Adjust year limits from 1582 when Gregorian calendar was first introduced to 3000 which ought to be enough.

This commit is contained in:
Leo Vasanko 2025-08-27 11:15:09 -06:00
parent 8f092b5653
commit 9183ffe873

View File

@ -23,8 +23,9 @@ const monthAbbr = [
'nov', 'nov',
'dec', 'dec',
] ]
const MIN_YEAR = 1000 // We get scrolling issues if the virtual view is bigger than that
const MAX_YEAR = 9999 const MIN_YEAR = 1582
const MAX_YEAR = 3000
// Core helpers ------------------------------------------------------------ // Core helpers ------------------------------------------------------------
/** /**