Browse Source
Bugfix/add missing currency suffix to cash balance field in create or update account dialog (#6092)
* Add missing currency suffix to cash balance field in create or update account dialog
* Update changelog
main
Karel De Smet
18 hours ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html
|
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
- Upgraded `shx` from version `0.3.4` to `0.4.0` |
|
|
- Upgraded `shx` from version `0.3.4` to `0.4.0` |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Added the missing currency suffix to the cash balance field in the create or update account dialog |
|
|
|
|
|
|
|
|
## 2.224.2 - 2025-12-20 |
|
|
## 2.224.2 - 2025-12-20 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
|
|
|
|
@ -39,7 +39,7 @@ |
|
|
(keydown.enter)="$event.stopPropagation()" |
|
|
(keydown.enter)="$event.stopPropagation()" |
|
|
/> |
|
|
/> |
|
|
<span class="ml-2" matTextSuffix>{{ |
|
|
<span class="ml-2" matTextSuffix>{{ |
|
|
accountForm.get('currency')?.value?.value |
|
|
accountForm.get('currency')?.value |
|
|
}}</span> |
|
|
}}</span> |
|
|
</mat-form-field> |
|
|
</mat-form-field> |
|
|
</div> |
|
|
</div> |
|
|
|