diff --git a/frontend/src/features/admin/business-hours/BusinessHoursForm.vue b/frontend/src/features/admin/business-hours/BusinessHoursForm.vue index 0c773226..a4235f3b 100644 --- a/frontend/src/features/admin/business-hours/BusinessHoursForm.vue +++ b/frontend/src/features/admin/business-hours/BusinessHoursForm.vue @@ -79,12 +79,14 @@ - +
- +
@@ -198,6 +200,7 @@ const holidayName = ref('') const holidayDate = ref(null) const selectedDays = ref({}) const hours = ref({}) +const openHolidayForm = ref(false) const form = useForm({ validationSchema: toTypedSchema(formSchema), @@ -211,6 +214,7 @@ const saveHoliday = () => { }) holidayName.value = '' holidayDate.value = null + openHolidayForm.value = false } const deleteHoliday = (item) => {