bfg-common 1.4.251 → 1.4.252

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.
@@ -139,6 +139,13 @@ const timeIntervalErrorText = computed<string>(() => {
139
139
  const schedulerAtOnceErrorText = computed<string>(() => {
140
140
  return !model.value.frg_on_time ? localization.value.common.fieldRequired : ''
141
141
  })
142
+ watch(
143
+ schedulerAtOnceErrorText,
144
+ (newValue: string) => {
145
+ model.value.isValid = !!newValue
146
+ },
147
+ { immediate: true }
148
+ )
142
149
 
143
150
  // const calendarDefaultDate = ref<number>(new Date().getTime())
144
151
  // const currentDateLocal = ref<string>('')
@@ -4,7 +4,7 @@ import type {
4
4
 
5
5
  export const scheduledTaskDefaultFormFunc = (): UI_I_ScheduleNewTasksForm => {
6
6
  return {
7
- isValid: false,
7
+ isValid: true,
8
8
  task_name: '',
9
9
  description: '',
10
10
  ntfn_target: '',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.251",
4
+ "version": "1.4.252",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",