Skip to content

Commit

Permalink
fix: align cron expressions with labels
Browse files Browse the repository at this point in the history
  • Loading branch information
ismay authored and ismay committed Feb 13, 2024
1 parent b0ab803 commit a5f6396
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Modal/CronPresetModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ const cronPresets = [
},
{
label: i18n.t('Every day at midnight'),
value: '0 0 1 ? * *',
value: '0 0 0 ? * *',
},
{
label: i18n.t('Every day at 3 am'),
value: '0 0 3 ? * *',
},
{
label: i18n.t('Every day at noon'),
value: '0 0 12 ? * MON-FRI',
value: '0 0 12 ? * *',
},
{
label: i18n.t('Every week'),
Expand Down

1 comment on commit a5f6396

@dhis2-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.