This is an automated email from the ASF dual-hosted git repository.

leonbao pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new c3324cc  fix ‘name already exist’ bug (#6327)
c3324cc is described below

commit c3324cc101b39eb789cccd9dee7e3cc5aae8722b
Author: Wangyizhi1 <[email protected]>
AuthorDate: Fri Sep 24 15:44:40 2021 +0800

    fix ‘name already exist’ bug (#6327)
---
 .../src/js/conf/home/pages/dag/_source/canvas/canvas.vue                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/canvas/canvas.vue 
b/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/canvas/canvas.vue
index 3bbeabf..2e4bc44 100644
--- a/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/canvas/canvas.vue
+++ b/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

Reply via email to