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 4 months ago committed by GitHub
parent 88c19eb45e
commit 6ae3a47b54
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

Loading…
Cancel
Save