Skip to content

Commit

Permalink
feat(Schedule Trigger Node): Linking to crontab.guru examples (no-cha…
Browse files Browse the repository at this point in the history
…ngelog) (n8n-io#5834)

linking to crontab.guru examples instead of cronmaker.com

Co-authored-by: Jon <[email protected]>
  • Loading branch information
2 people authored and believe-Mahesh committed Apr 4, 2023
1 parent 304cb21 commit 65f734a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nodes-base/nodes/Schedule/ScheduleTrigger.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down Expand Up @@ -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/',
});
}
}
Expand Down

0 comments on commit 65f734a

Please sign in to comment.