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 committed Feb 8, 2024
1 parent b0ab803 commit c361932
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

0 comments on commit c361932

Please sign in to comment.