Clear the original form field backups when the form is reloaded. This is to prevent "Undefined field value" error

This commit is contained in:
NI
2020-08-15 21:59:38 +08:00
parent 5fa3616a73
commit c636e08605

View File

@@ -493,6 +493,8 @@ export default {
this.currentConnectorCloseWait = (async () => { this.currentConnectorCloseWait = (async () => {
while (!this.disabled) { while (!this.disabled) {
this.clearFieldValueBackup();
let next = this.buildCurrent(await this.getConnector().wizard.next()); let next = this.buildCurrent(await this.getConnector().wizard.next());
switch (next.type()) { switch (next.type()) {