mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -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:
|
||||
'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',
|
||||
type: 'notice',
|
||||
displayOptions: {
|
||||
|
@ -462,7 +462,7 @@ export class ScheduleTrigger implements INodeType {
|
|||
cronJobs.push(cronJob);
|
||||
} catch (error) {
|
||||
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