Skip to content

Commit b1327ec

Browse files
committed
fix(month): render remaining days of lmonths last week
1 parent 6c8f19a commit b1327ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/core/month.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export default {
110110
const monthKey = this.date.format('YYYY/MM');
111111
// move to start of week if it's not
112112
let date = dayjs(this.date).startOf('Month').startOf('week');
113-
const end = dayjs(this.date).endOf('Month');
113+
const end = dayjs(this.date).endOf('Month').endOf('week');
114114
115115
const days = [];
116116

0 commit comments

Comments
 (0)