Bugfix/remove holdings with incomplete data from top3 bottom3 performers (#2921)

* Remove holdings with incomplete data

* Update changelog
pull/2925/head
Thomas Kaul 4 months ago committed by GitHub
parent bbde86c66e
commit 2c10cd7edf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved the language localization for German (`de`)
### Fixed
- Removed holdings with incomplete data from the _Top 3_ and _Bottom 3_ performers on the analysis page
## 2.44.0 - 2024-01-24
### Fixed

@ -379,7 +379,9 @@ export class AnalysisPageComponent implements OnDestroy, OnInit {
.pipe(takeUntil(this.unsubscribeSubject))
.subscribe(({ positions }) => {
const positionsSorted = sortBy(
positions,
positions.filter(({ netPerformancePercentage }) => {
return isNumber(netPerformancePercentage);
}),
'netPerformancePercentage'
).reverse();

Loading…
Cancel
Save