Browse Source

Bugfix/fix currency of value in position detail dialog (#627)

* Fix currency

* Update changelog
pull/628/head
Thomas Kaul 3 years ago
committed by GitHub
parent
commit
e344c43a5a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 2
      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 links to the statistics section on the about page
### Fixed
- Fixed the currency of the value in the position detail dialog
## 1.102.0 - 11.01.2022
### Changed

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

@ -12,7 +12,7 @@
<div class="col-12 d-flex justify-content-center mb-3">
<gf-value
size="large"
[currency]="currency"
[currency]="data.baseCurrency"
[locale]="data.locale"
[value]="value"
></gf-value>

Loading…
Cancel
Save