This is an automated email from the ASF dual-hosted git repository.
kirs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-dolphinscheduler.git
The following commit(s) were added to refs/heads/dev by this push:
new 0794cc5 [FIX-#4468] [UI] Workflow relationships Name filtering
invalidated #4508
0794cc5 is described below
commit 0794cc5358431cbda796abe7d10d0ae0329c0c69
Author: 小二黑 <[email protected]>
AuthorDate: Wed Jan 20 17:35:22 2021 +0800
[FIX-#4468] [UI] Workflow relationships Name filtering invalidated #4508
Co-authored-by: 花花 <[email protected]>
---
.../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 72d230b..f3dd399 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 || '')
}