fix(editor): Adjust time format for negative numbers (no-changelog) (#16194)

This commit is contained in:
Suguru Inoue
2025-06-10 17:25:22 +02:00
committed by GitHub
parent aa407350bb
commit aa03110f2e
6 changed files with 21 additions and 7 deletions

View File

@@ -1,6 +1,7 @@
import type { IDataObject } from 'n8n-workflow';
import type { IRestApiContext } from '../types';
import { makeRestApiRequest } from '../utils';
import type { IDataObject } from 'n8n-workflow';
export interface LdapSyncData {
id: number;

View File

@@ -284,6 +284,6 @@ export async function streamRequest<T extends object>(
}
} catch (e: unknown) {
assert(e instanceof Error);
onError?.(e as Error);
onError?.(e);
}
}