feat: add season request dialog and enhance season request management

This commit is contained in:
maxDorninger
2025-05-24 19:30:53 +02:00
parent d2f0b8f22d
commit 84abc3e81d
16 changed files with 349 additions and 41 deletions

View File

@@ -14,7 +14,7 @@
let requests: SeasonRequest[] = $state(page.data.requestsData);
</script>
<!-- TODO: ADD DIALOGUE TO MODIFY REQUEST -->
<header class="flex h-16 shrink-0 items-center gap-2">
<div class="flex items-center gap-2 px-4">
<Sidebar.Trigger class="-ml-1"/>
@@ -45,5 +45,5 @@
<h1 class="scroll-m-20 text-center text-4xl font-extrabold tracking-tight lg:text-5xl">
Season Requests
</h1>
<RequestsTable requests={requests}/>
<RequestsTable bind:requests={requests}/>
</div>