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();