From 4e72d6fea190e0df1c81ebf7add8a0dcf3ff3699 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Fri, 5 Jul 2024 10:01:09 +0200 Subject: [PATCH] Update slot duration in calendar The slot duration in the 'MyCalendarRange' module has been updated to a new time. The previous duration was 5 minutes, but it has now been increased to 15 minutes to provide users with longer time slots. --- .../Resources/public/vuejs/MyCalendarRange/App2.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillCalendarBundle/Resources/public/vuejs/MyCalendarRange/App2.vue b/src/Bundle/ChillCalendarBundle/Resources/public/vuejs/MyCalendarRange/App2.vue index 883142a51..4de668e91 100644 --- a/src/Bundle/ChillCalendarBundle/Resources/public/vuejs/MyCalendarRange/App2.vue +++ b/src/Bundle/ChillCalendarBundle/Resources/public/vuejs/MyCalendarRange/App2.vue @@ -206,7 +206,7 @@ const store = useStore(key); const { t } = useI18n(); const showWeekends = ref(false); -const slotDuration = ref("00:05:00"); +const slotDuration = ref("00:15:00"); const slotMinTime = ref("09:00:00"); const slotMaxTime = ref("18:00:00"); const copyFrom = ref(null);