From 0794cc5358431cbda796abe7d10d0ae0329c0c69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E4=BA=8C=E9=BB=91?= <784445949@qq.com> Date: Wed, 20 Jan 2021 17:35:22 +0800 Subject: [PATCH] [FIX-#4468] [UI] Workflow relationships Name filtering invalidated #4508 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: 花花 --- .../src/js/conf/home/pages/projects/pages/kinship/index.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/kinship/index.vue b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/kinship/index.vue index 72d230bf92..f3dd3990f5 100644 --- a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/kinship/index.vue +++ b/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 || '') }