From 6d4cae31232386649e5ee8cda140b9dcbd2b6f2b Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Wed, 15 Apr 2026 20:32:00 +0200 Subject: [PATCH] Bugfix/missing value column of accounts table component on mobile (#6740) * Fix missing value column * Update changelog --- CHANGELOG.md | 4 ++++ libs/ui/src/lib/accounts-table/accounts-table.component.ts | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef65db2b6..ff6e5e8a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Upgraded `angular` from version `21.1.1` to `21.2.7` - Upgraded `Nx` from version `22.5.3` to `22.6.4` +### Fixed + +- Fixed the missing value column of the accounts table component on mobile + ## 2.254.0 - 2026-03-10 ### Added diff --git a/libs/ui/src/lib/accounts-table/accounts-table.component.ts b/libs/ui/src/lib/accounts-table/accounts-table.component.ts index 99e68c679..aa104f795 100644 --- a/libs/ui/src/lib/accounts-table/accounts-table.component.ts +++ b/libs/ui/src/lib/accounts-table/accounts-table.component.ts @@ -64,7 +64,7 @@ export class GfAccountsTableComponent { public readonly showBalance = input(true); public readonly showFooter = input(true); public readonly showValue = input(true); - public readonly showValueInBaseCurrency = input(false); + public readonly showValueInBaseCurrency = input(true); public readonly totalBalanceInBaseCurrency = input(); public readonly totalValueInBaseCurrency = input();