This commit is contained in:
2024-12-14 18:10:50 +01:00
parent d4ac123654
commit d7000c084b
16 changed files with 54 additions and 54 deletions

View File

@@ -68,7 +68,7 @@
{#each referees as referee}
<li class="flex flex-grow justify-between">
{referee.name}
<SWButton on:click={removeReferee(referee.uuid)}>
<SWButton onclick={removeReferee(referee.uuid)}>
Entfernen
</SWButton>
</li>
@@ -79,7 +79,7 @@
{/if}
</ul>
<Button class="fixed bottom-6 right-6 !p-4 z-10 shadow-lg" on:click={() => showAdd = true}>
<Button class="fixed bottom-6 right-6 !p-4 z-10 shadow-lg" onclick={() => showAdd = true}>
<PlusOutline/>
</Button>
@@ -92,8 +92,8 @@
</div>
{#snippet footer()}
<div class="flex flex-grow justify-end">
<SWButton on:click={reset} type="gray">Abbrechen</SWButton>
<SWButton on:click={addReferee}>Hinzufügen</SWButton>
<SWButton onclick={reset} type="gray">Abbrechen</SWButton>
<SWButton onclick={addReferee}>Hinzufügen</SWButton>
</div>
{/snippet}
</SWModal>