Browse Source

Reorder attributes

pull/2408/head
Thomas 2 years ago
parent
commit
742f81aa06
  1. 2
      apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.component.ts

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

@ -41,7 +41,7 @@ export class CreateOrUpdateAccountDialog implements OnDestroy {
this.platforms = platforms;
this.accountForm = this.formBuilder.group({
accountId: [{ value: this.data.account.id, disabled: true }],
accountId: [{ disabled: true, value: this.data.account.id }],
balance: [this.data.account.balance, Validators.required],
comment: [this.data.account.comment],
currency: [this.data.account.currency, Validators.required],

Loading…
Cancel
Save