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';