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

This commit is contained in:
2025-08-27 23:15:09 +00:00
parent 54625bb70f
commit 367072a8a2
+3 -2
View File
@@ -23,8 +23,9 @@ const monthAbbr = [
'nov',
'dec',
]
const MIN_YEAR = 1000
const MAX_YEAR = 9999
// We get scrolling issues if the virtual view is bigger than that
const MIN_YEAR = 1582
const MAX_YEAR = 3000
// Core helpers ------------------------------------------------------------
/**