implemented cancelled event visualization

This commit is contained in:
2025-11-27 13:40:58 -05:00
parent 941004f913
commit 0b3a95cdc0
5 changed files with 33 additions and 18 deletions

View File

@@ -11,7 +11,7 @@ export function useCalendarEvents(selectedMonth, selectedYear) {
title: e.name,
start: new Date(e.start),
end: e.end ? new Date(e.end) : undefined,
extendedProps: { color: e.color },
extendedProps: { color: e.color, cancelled: !!e.cancelled },
};
}