diff --git a/roster/src/components/MonthView.vue b/roster/src/components/MonthView.vue index a041252c2c..90f7c1d370 100644 --- a/roster/src/components/MonthView.vue +++ b/roster/src/components/MonthView.vue @@ -116,7 +116,7 @@ import { import ShiftAssignmentDialog from "./ShiftAssignmentDialog.vue"; -const firstOfMonth = ref(dayjs().date(1)); +const firstOfMonth = ref(dayjs().date(1).startOf("D")); const shiftAssignment = ref(null); const showShiftAssignmentDialog = ref(false); const hoveredCell = ref({ employee: "", date: "" });