From 91161f2831dedf6598303ed60d4ddddf32f9c2f2 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Thu, 9 Feb 2023 14:54:21 +0000 Subject: [PATCH] Increase the event limit to 25 Fixes #139 --- src/frontend/calendar/cell.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/calendar/cell.js b/src/frontend/calendar/cell.js index 36a2829..b1b0948 100644 --- a/src/frontend/calendar/cell.js +++ b/src/frontend/calendar/cell.js @@ -18,7 +18,7 @@ function CalendarCell( { events, onEventClick, } ) { - const MAX_EVENTS = 7; + const MAX_EVENTS = 25; if ( blank ) { return ; }