damienroche / vue-mj-daterangepicker

🗓Vue.js date range picker with multiples ranges and presets (vue 2.x)
https://damienroche.github.io/vue-mj-daterangepicker/
60 stars 39 forks source link

Is there a option to show 6 weeks in range panel when first day of month is Sunday #21

Closed CGTDev92 closed 4 years ago

CGTDev92 commented 4 years ago

As plugin show only 5 weeks in panel therefor if first day of month is last day of week of previous month then it will not appear in current calendar month. Like in attach image 1st March 2020 is not shown in March 2020 calendar. firstMarchNotAvailable

CGTDev92 commented 4 years ago

Can you please add below condition in "updateCalendar()" function at line 13200 within File "vue-mj-daterangepicker.common.js". This will resolve this issue of not showing first day of month when it is Sunday.

if(nbDaysLastMonth == -1) { nbDaysLastMonth = 6; }

damienroche commented 4 years ago

@CGTDev92 thanks for report this. I'll fix this asap.

CGTDev92 commented 4 years ago

@CGTDev92 thanks for report this. I'll fix this asap.

@damienroche Any update on this ?

damienroche commented 4 years ago

I just fixed it, i will upload an new version today

damienroche commented 4 years ago

fixed in v0.1.11