Refactor event and fight repositories to use numeric IDs for groups; update datetime picker input handling; add new generator components for event fights and group phases.
All checks were successful
SteamWarCI Build successful

This commit is contained in:
2025-09-16 18:03:29 +02:00
parent 5f12a0cc7a
commit a3b4a6d0c2
12 changed files with 387 additions and 36 deletions

View File

@ -25,7 +25,7 @@
let groupSelectOpen = $state(false);
async function handleGroupSave(group: GroupUpdateEdit) {
let g = await $eventRepo.createGroup(event.id.toString(), group);
let g = await $eventRepo.createGroup(event.id, group);
groups.push(g);
value = g.id;
createOpen = false;