From c60cff04ce66bfa1b60afc85df7aee7d2b4e287f Mon Sep 17 00:00:00 2001 From: Gregor Vostrak Date: Tue, 24 Feb 2026 15:30:18 +0100 Subject: [PATCH] fix calendar flickering on move for non-aligned entries this is a trade-off where for non grid aligned entries, the cursor position is a bit off, but data and visual are stil in sync. otherwise fc overrides height on drag, causing flickers. --- resources/js/packages/ui/src/FullCalendar/TimeEntryCalendar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/packages/ui/src/FullCalendar/TimeEntryCalendar.vue b/resources/js/packages/ui/src/FullCalendar/TimeEntryCalendar.vue index 133f6ff7..f227f4b1 100644 --- a/resources/js/packages/ui/src/FullCalendar/TimeEntryCalendar.vue +++ b/resources/js/packages/ui/src/FullCalendar/TimeEntryCalendar.vue @@ -368,7 +368,7 @@ const calendarOptions = computed(() => { slotDuration: formatDuration(s.slotMinutes * 60), slotLabelInterval: '01:00:00', slotLabelFormat: getSlotLabelFormat(), - snapDuration: '00:01:00', + snapDuration: formatDuration(s.snapMinutes * 60), firstDay: getFirstDay(), allDaySlot: false, nowIndicator: true,