Browse Source
Bugfix/change top and bottom performers to performance with currency effect (#3046)
* Change to performance with currency effect
* Update changelog
pull/3053/head
Thomas Kaul
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
10 additions and
2 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/portfolio/analysis/analysis-page.html
|
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Restructured the `copy-assets` `Nx` target |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Changed the performances of the _Top 3_ and _Bottom 3_ performers on the analysis page to take the currency effects into account |
|
|
|
|
|
|
|
## 2.56.0 - 2024-02-24 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
@ -177,7 +177,9 @@ |
|
|
|
[colorizeSign]="true" |
|
|
|
[isPercent]="true" |
|
|
|
[locale]="user?.settings?.locale" |
|
|
|
[value]="position.netPerformancePercentage" |
|
|
|
[value]=" |
|
|
|
position.netPerformancePercentageWithCurrencyEffect |
|
|
|
" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
</a> |
|
|
@ -223,7 +225,9 @@ |
|
|
|
[colorizeSign]="true" |
|
|
|
[isPercent]="true" |
|
|
|
[locale]="user?.settings?.locale" |
|
|
|
[value]="position.netPerformancePercentage" |
|
|
|
[value]=" |
|
|
|
position.netPerformancePercentageWithCurrencyEffect |
|
|
|
" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
</a> |
|
|
|