From acdcb6aa7de85965defeca6ad4d04535b94bb9c4 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Fri, 21 Aug 2026 17:22:50 +0200 Subject: [PATCH] Task/extend account selector options to include platform and currency (#7683) * Extend options to include platform and currency * Update changelog --- CHANGELOG.md | 1 + .../account-selector.component.html | 13 +++++++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index febd47f84..5d1dad4dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Extended the account selector options to include the platform and currency - Upgraded `yahoo-finance2` from version `4.0.0` to `4.0.2` ## 3.56.0 - 2026-08-20 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 }} +
}