Feature/add currency to cash balance in create or update account dialog (#2104)

* Add currency as text suffix to cash balance

* Update changelog
pull/2106/head
Thomas Kaul 12 months ago committed by GitHub
parent 6a802a62a0
commit 97504756be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Added the currency to the cash balance in the create or update account dialog
- Added the ability to add an index for benchmarks as an asset profile in the admin control panel
### Fixed

@ -37,6 +37,7 @@
type="number"
[(ngModel)]="data.account.balance"
/>
<span class="ml-2" matTextSuffix>{{ data.account.currency }}</span>
</mat-form-field>
</div>
<div [ngClass]="{ 'd-none': platforms?.length < 1 }">

Loading…
Cancel
Save