bfg-common 1.4.270 → 1.4.271

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.
@@ -203,9 +203,8 @@ const newTaskForm = ref<UI_I_ScheduleNewTasksForm>(
203
203
  )
204
204
  watch(
205
205
  newTaskForm,
206
- (newValue) => {
207
- if (props.isScheduledTasks)
208
- wizard.setDisabledNextButton(!newValue.task_name || !newValue.frequency)
206
+ (newValue: UI_I_ScheduleNewTasksForm) => {
207
+ if (props.isScheduledTasks) wizard.setDisabledNextButton(newValue.isValid)
209
208
  },
210
209
  { immediate: true, deep: true }
211
210
  )
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.270",
4
+ "version": "1.4.271",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",