beat calendar styling into submission to support multi day events

This commit is contained in:
2025-11-27 15:19:05 -05:00
parent 0b3a95cdc0
commit 33fcb16427
4 changed files with 16 additions and 21 deletions

View File

@@ -65,7 +65,7 @@ export async function cancelEvent(eventID: number) {
export async function getShortEventsInRange(startDate: string, endDate: string): Promise<CalendarEventShort[]> {
const sql = `
SELECT id, name, start, end, color, cancelled
SELECT id, name, start, end, color, cancelled, full_day
FROM calendar_events
WHERE start BETWEEN ? AND ?
ORDER BY start ASC