Browse Source

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

Co-authored-by: 花花 <huahua@thinkingdata.cn>
data_quality_design
小二黑 3 years ago committed by GitHub
parent
commit
0794cc5358
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/kinship/index.vue

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

Loading…
Cancel
Save