We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6133316 commit 3a34babCopy full SHA for 3a34bab
src/ui/Menus/DatePicker.ts
@@ -22,7 +22,8 @@ export function promptForDate(
22
// running overnight, the flatpickr modal shows the previous day as Today.
23
// Try to determine the first day of the week based on the locale, or use Monday
24
// if unavailable
25
- const firstDayOfWeekFromLocale = (new Intl.Locale(navigator.language) as any).weekInfo.firstDay;
+ const weekInfo = (new Intl.Locale(navigator.language) as any).weekInfo;
26
+ const firstDayOfWeekFromLocale = weekInfo.firstDay;
27
const firstDayOfWeek = firstDayOfWeekFromLocale ?? 1;
28
const fp = flatpickr(parentElement, {
29
defaultDate: currentValue ? currentValue.format('YYYY-MM-DD') : new Date(),
0 commit comments