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 21 hours ago
committed by GitHub
parent
commit
5727ce3375
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 2
      apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html

4
CHANGELOG.md

@ -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

2
apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html

@ -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>

Loading…
Cancel
Save