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 }} +
}