mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(editor): Adjust time format for negative numbers (no-changelog) (#16194)
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -284,6 +284,6 @@ export async function streamRequest<T extends object>(
|
||||
}
|
||||
} catch (e: unknown) {
|
||||
assert(e instanceof Error);
|
||||
onError?.(e as Error);
|
||||
onError?.(e);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user