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.
This commit is contained in:
Julien Fastré 2024-07-05 10:01:09 +02:00
parent 5666b8b647
commit 4e72d6fea1
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB

View File

@ -206,7 +206,7 @@ const store = useStore(key);
const { t } = useI18n(); const { t } = useI18n();
const showWeekends = ref(false); const showWeekends = ref(false);
const slotDuration = ref("00:05:00"); const slotDuration = ref("00:15:00");
const slotMinTime = ref("09:00:00"); const slotMinTime = ref("09:00:00");
const slotMaxTime = ref("18:00:00"); const slotMaxTime = ref("18:00:00");
const copyFrom = ref<string | null>(null); const copyFrom = ref<string | null>(null);