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
parent
commit
6ae3a47b54
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 8
      apps/client/src/app/pages/portfolio/analysis/analysis-page.html

4
CHANGELOG.md

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

8
apps/client/src/app/pages/portfolio/analysis/analysis-page.html

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