Browse Source

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

* Remove holdings with incomplete data

* Update changelog
pull/2925/head
Thomas Kaul 1 year ago
committed by GitHub
parent
commit
2c10cd7edf
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 4
      apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts

4
CHANGELOG.md

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

4
apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts

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