Browse Source
Bugfix/fix displayed currency of cash balance in account dialog (#2480)
* Fix currency
* Update changelog
pull/2488/head
Thomas Kaul
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
4 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html
|
|
@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed `FEE` and `INTEREST` types in the activities import of `csv` files |
|
|
|
- Fixed the displayed currency of the cash balance in the create or update account dialog |
|
|
|
|
|
|
|
## 2.10.0 - 2023-10-09 |
|
|
|
|
|
|
|
|
|
@ -36,7 +36,9 @@ |
|
|
|
type="number" |
|
|
|
(keydown.enter)="$event.stopPropagation()" |
|
|
|
/> |
|
|
|
<span class="ml-2" matTextSuffix>{{ data.account.currency }}</span> |
|
|
|
<span class="ml-2" matTextSuffix |
|
|
|
>{{ accountForm.controls['currency'].value }}</span |
|
|
|
> |
|
|
|
</mat-form-field> |
|
|
|
</div> |
|
|
|
<div [ngClass]="{ 'd-none': platforms?.length < 1 }"> |
|
|
|