Browse Source

[Fix-3077][ui] Fix the edit name duplicated verify (#3346)

pull/3/MERGE
Yichao Yang 4 years ago committed by GitHub
parent
commit
d79af50809
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/udp/udp.vue

7
dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/udp/udp.vue

@ -169,17 +169,12 @@
this.$emit('onUdp') this.$emit('onUdp')
} }
// Edit => direct storage // verify that the name exists
if (this.store.state.dag.name) {
_verif()
} else {
// New First verify that the name exists
this.store.dispatch('dag/verifDAGName', this.name).then(res => { this.store.dispatch('dag/verifDAGName', this.name).then(res => {
_verif() _verif()
}).catch(e => { }).catch(e => {
this.$message.error(e.msg || '') this.$message.error(e.msg || '')
}) })
}
}, },
/** /**
* Close the popup * Close the popup

Loading…
Cancel
Save