From a572c35115937b1194dee79fdd7132eb875afcd5 Mon Sep 17 00:00:00 2001 From: cketti Date: Sun, 22 Jun 2025 01:05:26 +0200 Subject: [PATCH] Fix fullcalendar.io bug that sometimes breaks our upcoming events section --- assets/static/lib/fullcalendar-3.5.1/fullcalendar.js | 1 + templates/home.html | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/static/lib/fullcalendar-3.5.1/fullcalendar.js b/assets/static/lib/fullcalendar-3.5.1/fullcalendar.js index c90a572..0650b02 100644 --- a/assets/static/lib/fullcalendar-3.5.1/fullcalendar.js +++ b/assets/static/lib/fullcalendar-3.5.1/fullcalendar.js @@ -17601,6 +17601,7 @@ var ListViewGrid = Grid.extend({ // and mutate the latest seg to the be the end. if ( !seg.isEnd && !footprint.isAllDay && + dayIndex + 1 < dayRanges.length && footprint.unzonedRange.endMs < dayRanges[dayIndex + 1].startMs + view.nextDayThreshold ) { seg.endMs = footprint.unzonedRange.endMs; diff --git a/templates/home.html b/templates/home.html index ee0685f..c36005b 100644 --- a/templates/home.html +++ b/templates/home.html @@ -24,7 +24,7 @@ {% block bottom %} - + {#