From 020328b6b336c962afe5e87f1b4548bd88837199 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Sat, 23 Aug 2025 18:55:35 -0600 Subject: [PATCH] Only allow select up to 14 days --- src/stores/CalendarStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/CalendarStore.js b/src/stores/CalendarStore.js index 8f44081..738ab12 100644 --- a/src/stores/CalendarStore.js +++ b/src/stores/CalendarStore.js @@ -26,7 +26,7 @@ export const useCalendarStore = defineStore('calendar', { _holidayConfigSignature: null, _holidaysInitialized: false, config: { - select_days: 1000, + select_days: 14, min_year: MIN_YEAR, max_year: MAX_YEAR, first_day: 1,