diff --git a/misc/config_tools/configurator/packages/configurator/src/pages/Config.vue b/misc/config_tools/configurator/packages/configurator/src/pages/Config.vue index db054c49d..4a1ee1f92 100644 --- a/misc/config_tools/configurator/packages/configurator/src/pages/Config.vue +++ b/misc/config_tools/configurator/packages/configurator/src/pages/Config.vue @@ -76,6 +76,7 @@ :currentActiveVMID="activeVMID" :currentFormSchema="currentFormSchema" :currentFormData="currentFormData" + ref="ConfigForm" @deleteVM="deleteVM" @scenarioConfigFormDataUpdate="scenarioConfigFormDataUpdate" @@ -215,6 +216,7 @@ export default { }, switchTab(tabVMID) { this.activeVMID = tabVMID; + this.$refs.ConfigForm.currentFormMode = 'BasicConfigType' this.updateCurrentFormSchema() this.updateCurrentFormData() },