Browse Source
Feature/add quantity column to holdings table of portfolio holdings page (#6607)
* Add quantity column
* Update changelog
pull/6594/merge
Thomas Kaul
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/home-holdings/home-holdings.html
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
## Unreleased |
|
|
## Unreleased |
|
|
|
|
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
|
|
|
|
- Added the quantity column to the holdings table of the portfolio holdings page |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
|
|
|
|
|
- Improved the language localization for Polish (`pl`) |
|
|
- Improved the language localization for Polish (`pl`) |
|
|
|
|
|
@ -46,7 +46,6 @@ |
|
|
} |
|
|
} |
|
|
<div [ngClass]="{ 'd-none': viewModeFormControl.value !== 'TABLE' }"> |
|
|
<div [ngClass]="{ 'd-none': viewModeFormControl.value !== 'TABLE' }"> |
|
|
<gf-holdings-table |
|
|
<gf-holdings-table |
|
|
[hasPermissionToShowQuantities]="false" |
|
|
|
|
|
[holdings]="holdings" |
|
|
[holdings]="holdings" |
|
|
[locale]="user?.settings?.locale" |
|
|
[locale]="user?.settings?.locale" |
|
|
(holdingClicked)="onHoldingClicked($event)" |
|
|
(holdingClicked)="onHoldingClicked($event)" |
|
|
|