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:
Marcus 2023-03-30 13:07:16 +02:00 committed by GitHub
parent 2216455760
commit 6f720919c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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/',
});
}
}