MDL-78478 forms: Fix repeated elements in dynamic forms

This commit is contained in:
David Bogner 2023-06-14 15:13:54 +02:00
parent 71c36d2de1
commit f80adab439
3 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -247,7 +247,7 @@ export default class DynamicForm {
this.disableButtons(); this.disableButtons();
this.getBody(formData.toString()) this.getBody(formData.toString())
.then(this.updateForm) .then(resp => this.updateForm(resp))
.then(pendingPromise.resolve) .then(pendingPromise.resolve)
.catch(exception => this.onSubmitError(exception)); .catch(exception => this.onSubmitError(exception));
} }