Browse Source

Feature/improve label of average price (#805)

* Improve label

* Update changelog
pull/807/head
Thomas Kaul 3 years ago
committed by GitHub
parent
commit
52d113e71f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 4
      apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html

4
CHANGELOG.md

@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added support for localization (date and number format) in user settings - Added support for localization (date and number format) in user settings
### Changed
- Improved the label of the average price from _Ø Buy Price_ to _Average Unit Price_
## 1.131.1 - 04.04.2022 ## 1.131.1 - 04.04.2022
### Fixed ### Fixed

4
apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html

@ -21,7 +21,7 @@
<gf-line-chart <gf-line-chart
class="mb-4" class="mb-4"
benchmarkLabel="Buy Price" benchmarkLabel="Average Unit Price"
[benchmarkDataItems]="benchmarkDataItems" [benchmarkDataItems]="benchmarkDataItems"
[historicalDataItems]="historicalDataItems" [historicalDataItems]="historicalDataItems"
[showGradient]="true" [showGradient]="true"
@ -53,7 +53,7 @@
</div> </div>
<div class="col-6 mb-3"> <div class="col-6 mb-3">
<gf-value <gf-value
label="Ø Buy Price" label="Average Unit Price"
size="medium" size="medium"
[currency]="SymbolProfile?.currency" [currency]="SymbolProfile?.currency"
[locale]="data.locale" [locale]="data.locale"

Loading…
Cancel
Save