Browse Source

[Bug-8170][UI] SUB_PROCESS Clicking into the child node does not react (#8371) (#8414)

* Fix-8170 SUB_PROCESS Clicking into the child node does not react

* Fix-8170 SUB_PROCESS Clicking into the child node does not react

Co-authored-by: mazhong <316422240@qq.com>
2.0.7-release
caishunfeng 2 years ago committed by GitHub
parent
commit
7a7558c9dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/formModel.vue

7
dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/formModel.vue

@ -653,13 +653,8 @@
this.$message.error(e.msg || '')
})
} else {
const processDefinitionId =
this.backfillItem.params.processDefinitionId
const process = this.processListS.find(
(def) => def.id === processDefinitionId
)
this.$emit('onSubProcess', {
subProcessCode: process.code,
subProcessCode: this.backfillItem.params.processDefinitionCode,
fromThis: this
})
}

Loading…
Cancel
Save