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 2 years 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
- 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 - Added the ability to add an index for benchmarks as an asset profile in the admin control panel
### Fixed ### Fixed

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

Loading…
Cancel
Save