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' ? firstDayIndex : firstDayIndex - 1
242
+ language === 'en_US'
243
+ ? firstDayIndex
244
+ : firstDayIndex === 0
245
+ ? 6
246
+ : firstDayIndex - 1
243
247
 
244
248
  const shortMonths = getShortMonths(language)
245
249
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.872",
4
+ "version": "1.5.873",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",