You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am playing aroung with the component on the Storybook page and noticed that the following expression 0 5 1 */6 * (Every 6 months, first day of the month, at 5AM), when I input it, is being translated to 0 0 * 1,7 * which wouldn't be interpret correctly.
Does the component support */6 rule?
The text was updated successfully, but these errors were encountered:
Unfortunately, it wouldn't be the same. While */6 could overlap with 1,7 if configured at the beginning of the year, */6 actually means "every 6 months." This means that if the cron job starts in a different month, the selected months would shift accordingly, making them different from 1,7, which is fixed to January and July.
Update: ChatGPT failed me ^
Yes, it seems like a presentational bug. If you can give me the right direction, I can try to look at this.
Thank you! Code is a bit old, could be wrong, but I would start by adding a unit test for that and write console.log. I see already a test that cover */2here.
Hi,
I am playing aroung with the component on the Storybook page and noticed that the following expression
0 5 1 */6 *
(Every 6 months, first day of the month, at 5AM), when I input it, is being translated to0 0 * 1,7 *
which wouldn't be interpret correctly.Does the component support */6 rule?
The text was updated successfully, but these errors were encountered: