overhauled account index page:
Build Docker Image / Docker-Build (push) Successful in 2m34s
Build Docker Image / Clean-Registry (push) Successful in 5s

- dropped ids from display
- ordered accounts by name

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2026-06-16 08:32:06 +02:00
parent 0879b53a88
commit 4a83bb6bee
+2 -2
View File
@@ -44,9 +44,9 @@
</span>
<ul>
{#each accounts as account (account.id)}
{#each accounts.toSorted((a,b) => a.name.localeCompare(b.name)) as account (account.id)}
<li>
<a {onclick} href="/account/{account.id}">{account.name} ({account.id})</a>
<a {onclick} href="/account/{account.id}">{account.name}</a>
</li>
{/each}
</ul>