Browse Source
Bugfix/fix table sorting of holdings (#3572)
* Hide holdings table to fix sorting
* Update changelog
pull/3575/head
Thomas Kaul
7 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
9 additions and
2 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/home-holdings/home-holdings.html
|
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. |
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
|
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Fixed the table sorting of the holdings tab on the home page |
|
|
|
|
|
|
|
|
## 2.96.0 - 2024-07-13 |
|
|
## 2.96.0 - 2024-07-13 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
@ -41,7 +41,8 @@ |
|
|
[holdings]="holdings" |
|
|
[holdings]="holdings" |
|
|
(treemapChartClicked)="onSymbolClicked($event)" |
|
|
(treemapChartClicked)="onSymbolClicked($event)" |
|
|
/> |
|
|
/> |
|
|
} @else if (viewModeFormControl.value === 'TABLE') { |
|
|
} |
|
|
|
|
|
<div [ngClass]="{ 'd-none': viewModeFormControl.value !== 'TABLE' }"> |
|
|
<gf-holdings-table |
|
|
<gf-holdings-table |
|
|
[baseCurrency]="user?.settings?.baseCurrency" |
|
|
[baseCurrency]="user?.settings?.baseCurrency" |
|
|
[deviceType]="deviceType" |
|
|
[deviceType]="deviceType" |
|
@ -60,7 +61,7 @@ |
|
|
> |
|
|
> |
|
|
</div> |
|
|
</div> |
|
|
} |
|
|
} |
|
|
} |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|