Browse Source

[FIX-#4468] [UI] Workflow relationships Name filtering invalidated #4508

Co-authored-by: 花花 <huahua@thinkingdata.cn>
小二黑 4 years ago
parent
commit
0794cc5358

+ 2 - 3
dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/kinship/index.vue

@@ -99,11 +99,10 @@
         })
       },
       async onChange (item) {
-        const { value, label } = item || {}
         this.isLoading = true
-        this.currentItemName = label
+        this.currentItemName = item
         try {
-          await this.getWorkFlowDAG(value)
+          await this.getWorkFlowDAG(item)
         } catch (error) {
           this.$message.error(error.msg || '')
         }