Bugfix/fix table sorting of holdings (#3572)

* Hide holdings table to fix sorting

* Update changelog
pull/3575/head
Thomas Kaul 6 months ago committed by GitHub
parent c9fc3e402d
commit acc59866a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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>

Loading…
Cancel
Save