Browse Source
Bugfix/missing value column of accounts table component on mobile (#6740)
* Fix missing value column
* Update changelog
pull/6213/merge
Thomas Kaul
3 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
1 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/accounts-table/accounts-table.component.ts
|
|
|
@ -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 |
|
|
|
|
|
|
|
@ -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>(); |
|
|
|
|
|
|
|
|