Browse Source

Improve usability

pull/7662/head
Thomas Kaul 1 week ago
parent
commit
03ddba9212
  1. 2
      apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.component.ts

2
apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.component.ts

@ -63,7 +63,7 @@ export class GfTransferBalanceDialogComponent {
protected readonly transferBalanceForm: TransferBalanceForm = new FormGroup({ protected readonly transferBalanceForm: TransferBalanceForm = new FormGroup({
balance: new FormControl<number | string | null>('', Validators.required), balance: new FormControl<number | string | null>('', Validators.required),
fromAccount: new FormControl<string | null>('', Validators.required), fromAccount: new FormControl<string | null>(null, Validators.required),
toAccount: new FormControl<string | null>(null, Validators.required) toAccount: new FormControl<string | null>(null, Validators.required)
}); });

Loading…
Cancel
Save