From 742f81aa06a406dc47c2524effe0a0ab5fa7b8dd Mon Sep 17 00:00:00 2001 From: Thomas <4159106+dtslvr@users.noreply.github.com> Date: Tue, 3 Oct 2023 19:05:24 +0200 Subject: [PATCH] Reorder attributes --- .../create-or-update-account-dialog.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.component.ts b/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.component.ts index 1e8c5a24d..cea927be9 100644 --- a/apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.component.ts +++ b/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],