bfg-common 1.5.872 → 1.5.873
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -239,7 +239,11 @@ const renderCalendar = (): void => {
|
|
|
239
239
|
const firstDayIndex = checkingDate.value.getDay()
|
|
240
240
|
const language = interfaceLang.value
|
|
241
241
|
const firstDayIndexByLanguage =
|
|
242
|
-
language === 'en_US'
|
|
242
|
+
language === 'en_US'
|
|
243
|
+
? firstDayIndex
|
|
244
|
+
: firstDayIndex === 0
|
|
245
|
+
? 6
|
|
246
|
+
: firstDayIndex - 1
|
|
243
247
|
|
|
244
248
|
const shortMonths = getShortMonths(language)
|
|
245
249
|
|