mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08: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:
parent
2216455760
commit
6f720919c9
|
@ -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/',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue