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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
7 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts
|
|
@ -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(); |
|
|
|
|
|
|
|