mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
fix(Schedule Trigger Node): Use the correct moment import (#8185)
Any node that uses `moment.tz` should import from `moment-timezone` instead of `moment`. This fixes #8184
This commit is contained in:
committed by
GitHub
parent
e94b8a6c30
commit
17a4e2ea80
@@ -1,5 +1,5 @@
|
||||
import type { IDataObject } from 'n8n-workflow';
|
||||
import moment from 'moment';
|
||||
import moment from 'moment-timezone';
|
||||
import type { IRecurencyRule } from './SchedulerInterface';
|
||||
|
||||
export function recurencyCheck(
|
||||
|
||||
@@ -8,7 +8,7 @@ import type {
|
||||
import { NodeOperationError } from 'n8n-workflow';
|
||||
|
||||
import { CronJob } from 'cron';
|
||||
import moment from 'moment';
|
||||
import moment from 'moment-timezone';
|
||||
import type { IRecurencyRule } from './SchedulerInterface';
|
||||
import { convertToUnixFormat, recurencyCheck } from './GenericFunctions';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user