From 00d41f1b6e61de1f8e101b62c8cd1487df3d42f9 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Wed, 15 Sep 2021 00:59:50 +0200 Subject: [PATCH] fix(core): update --- ts_web/elements/dees-form.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ts_web/elements/dees-form.ts b/ts_web/elements/dees-form.ts index ff1d40e..b613461 100644 --- a/ts_web/elements/dees-form.ts +++ b/ts_web/elements/dees-form.ts @@ -136,6 +136,13 @@ export class DeesForm extends DeesElement { const submitButton = this.getSubmitButton(); switch (visualStateArg) { + case 'normal': + submitButton.disabled = false; + submitButton.status = 'normal'; + for (const inputChild of inputChildren) { + inputChild.disabled = false; + } + break; case 'pending': submitButton.disabled = true; submitButton.status = 'pending';