fix(k8s-config): check for config editor change before setting as dirty

pull/5079/head
Felix Han 2021-05-20 11:46:17 +12:00
parent 47d462f085
commit 5618794927
1 changed files with 4 additions and 2 deletions

View File

@ -43,8 +43,10 @@ class KubernetesConfigurationDataController {
}
async editorUpdateAsync(cm) {
this.formValues.DataYaml = cm.getValue();
this.isEditorDirty = true;
if (this.formValues.DataYaml !== cm.getValue()) {
this.formValues.DataYaml = cm.getValue();
this.isEditorDirty = true;
}
}
editorUpdate(cm) {