mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
Fix calendar starting day.
This commit is contained in:
parent
5b4a012f0b
commit
e35821a0c3
1 changed files with 1 additions and 1 deletions
|
|
@ -105,7 +105,7 @@ export default function Calendar({ date, minDate, maxDate, onChange }) {
|
|||
const DaySelector = ({ date, minDate, maxDate, locale, onSelect }) => {
|
||||
const startWeek = startOfWeek(date);
|
||||
const startMonth = startOfMonth(date);
|
||||
const startDay = subDays(startMonth, startMonth.getDay() + 1);
|
||||
const startDay = subDays(startMonth, startMonth.getDay());
|
||||
const month = date.getMonth();
|
||||
const year = date.getFullYear();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue