Merge branch 'main' into dev
Build Docker Image / Docker-Build (push) Successful in 2m30s
Build Docker Image / Clean-Registry (push) Failing after 12m3s

This commit is contained in:
2026-06-16 08:32:36 +02:00
+2 -2
View File
@@ -44,9 +44,9 @@
</span> </span>
<ul> <ul>
{#each accounts as account (account.id)} {#each accounts.toSorted((a,b) => a.name.localeCompare(b.name)) as account (account.id)}
<li> <li>
<a {onclick} href="/account/{account.id}">{account.name} ({account.id})</a> <a {onclick} href="/account/{account.id}">{account.name}</a>
</li> </li>
{/each} {/each}
</ul> </ul>