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
parent
commit
acc59866a3
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      CHANGELOG.md
  2. 5
      apps/client/src/app/components/home-holdings/home-holdings.html

6
CHANGELOG.md

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

5
apps/client/src/app/components/home-holdings/home-holdings.html

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