Compare commits

...

2 Commits

Author SHA1 Message Date
StephanRichter b81d518a2b Merge branch 'main' into dev
Build Docker Image / Docker-Build (push) Successful in 2m30s
Build Docker Image / Clean-Registry (push) Failing after 12m3s
2026-06-16 08:32:36 +02:00
StephanRichter 4a83bb6bee 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>
2026-06-16 08:32:06 +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>