From 7c83ecb02dbd1e6ae7eff7d09721ccc37999d359 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Fri, 21 Aug 2026 14:56:48 +0200 Subject: [PATCH] Extend options to include platform and currency --- .../account-selector.component.html | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/libs/ui/src/lib/account-selector/account-selector.component.html b/libs/ui/src/lib/account-selector/account-selector.component.html index 0ba679706..9d84693d0 100644 --- a/libs/ui/src/lib/account-selector/account-selector.component.html +++ b/libs/ui/src/lib/account-selector/account-selector.component.html @@ -30,14 +30,23 @@ @for (account of sortedAccounts(); track account.id) { -
+
- {{ account.name }} +
+ {{ account.name }} +
+ + @if (account.platform?.name) { + {{ account.platform?.name }} ยท + } + {{ account.currency }} +
}