Skip to content

Commit

Permalink
fix: firstOfMonth time
Browse files Browse the repository at this point in the history
  • Loading branch information
krantheman committed May 8, 2024
1 parent 6ddf02f commit f5a855d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roster/src/components/MonthView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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: "" });
Expand Down

0 comments on commit f5a855d

Please sign in to comment.