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 955ad63 commit 7de1844Copy full SHA for 7de1844
src/components/calendar/calendar.js
@@ -356,7 +356,10 @@ export const BCalendar = Vue.extend({
356
return this.activeDate.getMonth()
357
},
358
calendarFirstDay() {
359
- return createDate(this.calendarYear, this.calendarMonth, 1)
+ // We set the time for this date to 12pm to work around
360
+ // date formatting issues in Firefox and Safari
361
+ // See: https://github.com/bootstrap-vue/bootstrap-vue/issues/5818
362
+ return createDate(this.calendarYear, this.calendarMonth, 1, 12)
363
364
calendarDaysInMonth() {
365
// We create a new date as to not mutate the original
0 commit comments