Browse Source

fix ‘name already exist’ bug (#6327)

2.0.7-release
Wangyizhi1 3 years ago committed by GitHub
parent
commit
c3324cc101
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/canvas/canvas.vue

2
dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/canvas/canvas.vue

@ -623,7 +623,7 @@
removeNode (id) {
id += ''
this.graph.removeNode(id)
this.removeTask(id)
this.removeTask(+id)
},
/**
* remove an edge

Loading…
Cancel
Save