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 || '') }