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

Co-authored-by: 花花 <huahua@thinkingdata.cn>
This commit is contained in:
小二黑 2021-01-20 17:35:22 +08:00 committed by GitHub
parent 734b188bd1
commit 0794cc5358
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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