bfg-common 1.4.305 → 1.4.306
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -126,9 +126,7 @@ const isDisabledMonthlyDayField = computed<boolean>(
|
|
|
126
126
|
() => model.value.frg_monthly_mode === 'week'
|
|
127
127
|
)
|
|
128
128
|
|
|
129
|
-
const isInitTimeIntervalValidation = ref<boolean>(
|
|
130
|
-
model.value.frg_monthly_day === 0
|
|
131
|
-
)
|
|
129
|
+
const isInitTimeIntervalValidation = ref<boolean>(false)
|
|
132
130
|
const onInitTimeIntervalValidation = (): void => {
|
|
133
131
|
isInitTimeIntervalValidation.value = true
|
|
134
132
|
}
|
|
@@ -14,7 +14,7 @@ export const scheduledTaskDefaultFormFunc = (): UI_I_ScheduleNewTasksForm => {
|
|
|
14
14
|
frg_end_time: '',
|
|
15
15
|
frg_start_on_time: '',
|
|
16
16
|
frg_monthly_mode: 'day',
|
|
17
|
-
frg_monthly_day:
|
|
17
|
+
frg_monthly_day: 1,
|
|
18
18
|
frq_week_day: '',
|
|
19
19
|
frq_ordinal_number: '',
|
|
20
20
|
frg_on_time: '',
|