implemented cancelled event visualization
This commit is contained in:
@@ -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 },
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user