From 9356c309a2930d09200ddefbf42d5c3398ef7066 Mon Sep 17 00:00:00 2001 From: radhika587 Date: Thu, 3 Mar 2022 12:49:29 +0530 Subject: [PATCH] change label --- resources/scripts/admin/stores/recurring-invoice.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/scripts/admin/stores/recurring-invoice.js b/resources/scripts/admin/stores/recurring-invoice.js index cd0ee5eb..ece01072 100644 --- a/resources/scripts/admin/stores/recurring-invoice.js +++ b/resources/scripts/admin/stores/recurring-invoice.js @@ -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' }, ], }),