[READ-ONLY] Mirror of https://github.com/probablykasper/date-picker-svelte. Date and time picker for Svelte date-picker-svelte.kasper.space
calendar date date-picker date-time-picker datepicker package svelte time
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix dates showing under the wrong weekday (off by one)

Kasper (Oct 2, 2021, 12:00 AM +0200) ca2d4852 cd8fd86a

+1 -1
+1 -1
src/lib/date-utils.ts
··· 46 46 let days: CalendarDay[] = [] 47 47 48 48 // add last month 49 - const daysBefore = firstWeekday 49 + const daysBefore = firstWeekday - 1 50 50 if (daysBefore > 0) { 51 51 let lastMonth = month - 1 52 52 let lastMonthYear = year