mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(Schedule Trigger Node): Linking to crontab.guru examples (no-changelog) (#5834)
linking to crontab.guru examples instead of cronmaker.com Co-authored-by: Jon <jonathan.bennetts@gmail.com>
This commit is contained in:
@@ -381,7 +381,7 @@ export class ScheduleTrigger implements INodeType {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName:
|
displayName:
|
||||||
'You can find help generating your cron expression <a href="http://www.cronmaker.com/?1" target="_blank">here</a>',
|
'You can find help generating your cron expression <a href="https://crontab.guru/examples.html" target="_blank">here</a>',
|
||||||
name: 'notice',
|
name: 'notice',
|
||||||
type: 'notice',
|
type: 'notice',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
@@ -462,7 +462,7 @@ export class ScheduleTrigger implements INodeType {
|
|||||||
cronJobs.push(cronJob);
|
cronJobs.push(cronJob);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
throw new NodeOperationError(this.getNode(), 'Invalid cron expression', {
|
throw new NodeOperationError(this.getNode(), 'Invalid cron expression', {
|
||||||
description: 'More information on how to build them at http://www.cronmaker.com',
|
description: 'More information on how to build them at https://crontab.guru/',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user