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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
5 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html
|
|
@ -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 |
|
|
|
|
|
@ -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> |
|
|
|