Browse Source

Bugfix/missing value column of accounts table component on mobile (#6740)

* Fix missing value column

* Update changelog
pull/6213/merge
Thomas Kaul 2 days ago
committed by GitHub
parent
commit
6d4cae3123
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 2
      libs/ui/src/lib/accounts-table/accounts-table.component.ts

4
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

2
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<number>();
public readonly totalValueInBaseCurrency = input<number>();

Loading…
Cancel
Save