Browse Source

Disable save button on changing some config

pull/1206/head
Hironsan 3 years ago
parent
commit
02e9d623a8
1 changed files with 6 additions and 0 deletions
  1. 6
      frontend/components/containers/settings/ConfigCreationForm.vue

6
frontend/components/containers/settings/ConfigCreationForm.vue

@ -169,6 +169,12 @@ export default Vue.extend({
const projectId = this.$route.params.id
const response: ConfigTemplateItem = await this.templateService.find(projectId, val)
this.templateConfig = response.toObject()
},
templateConfig: {
handler() {
this.passTesting = false
},
deep: true
}
},

Loading…
Cancel
Save