Merge branch 'change-frequency-label' into 'master'

change label

See merge request mohit.panjvani/crater-web!1458
This commit is contained in:
Mohit Panjwani
2022-03-03 07:25:45 +00:00

View File

@ -40,12 +40,12 @@ export const useRecurringInvoiceStore = (useWindow = false) => {
{ label: 'Every 30 Minute', value: '*/30 * * * *' },
{ label: 'Every Hour', value: '0 * * * *' },
{ label: 'Every 2 Hour', value: '0 */2 * * *' },
{ label: 'Twice A Day', value: '0 13-15 * * *' },
{ label: 'Every day at midnight ', value: '0 0 * * *' },
{ label: 'Every Week', value: '0 0 * * 0' },
{ label: 'Every 15 Days', value: '0 5 */15 * *' },
{ label: 'First Day Of Month', value: '0 0 1 * *' },
{ label: 'Every 15 days at midnight', value: '0 5 */15 * *' },
{ label: 'On the first day of every month at 00:00', value: '0 0 1 * *' },
{ label: 'Every 6 Month', value: '0 0 1 */6 *' },
{ label: 'Every Year', value: '0 0 1 1 *' },
{ label: 'Every year on the first day of january at 00:00', value: '0 0 1 1 *' },
{ label: 'Custom', value: 'CUSTOM' },
],
}),