fix(core): update

This commit is contained in:
Philipp Kunz 2021-09-15 13:10:28 +02:00
parent 3ce0683a05
commit 5dd3da9f31

View File

@ -103,7 +103,9 @@ export class DeesForm extends DeesElement {
requiredOK = false;
}
}
this.getSubmitButton().disabled = !requiredOK;
if (this.getSubmitButton()) {
this.getSubmitButton().disabled = !requiredOK;
}
}
public async gatherData() {