Make color optional in a group
Some checks failed
Check usage of free licenses / build-static-assets (pull_request) Successful in 2m14s
Add copyright notice / copyright_notice (pull_request) Successful in 4m44s
Playwright Tests / test (pull_request) Failing after 9m9s

This commit is contained in:
Manuel Bustillo 2024-11-13 08:58:55 +01:00
parent a6c517f8a1
commit 3e9775af99

View File

@ -47,7 +47,7 @@ export type Group = {
guest_count: number;
icon: string;
children: Group[];
color: string;
color?: string;
attendance?: AttendanceSummary
};