fix: Svelte 5 on:click → onclick Syntax in +page.svelte [appimage]
All checks were successful
Build AppImage / build (push) Successful in 9m5s

Build schlug fehl wegen gemischter Event-Handler-Syntax (Svelte 5
erlaubt kein Mischen von on:click und onclick im selben Component).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Eddy 2026-04-21 10:18:33 +02:00
parent 9c6026de40
commit a01959a55c

View file

@ -120,7 +120,7 @@
<button <button
class="tab" class="tab"
class:active={activeMiddleTab === tab.id} class:active={activeMiddleTab === tab.id}
on:click={() => activeMiddleTab = tab.id} onclick={() => activeMiddleTab = tab.id}
> >
{tab.icon} {tab.label} {tab.icon} {tab.label}
</button> </button>
@ -146,7 +146,7 @@
<button <button
class="tab" class="tab"
class:active={activeRightTab === tab.id} class:active={activeRightTab === tab.id}
on:click={() => activeRightTab = tab.id} onclick={() => activeRightTab = tab.id}
> >
{tab.icon} {tab.label} {tab.icon} {tab.label}
</button> </button>