Browse Source

when init workflow, the tenantId linked by the tenantId of user

pull/3/MERGE
yelli.hl@foxmail.com 4 years ago
parent
commit
2c6aa57ce9
  1. 8
      dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/udp/udp.vue

8
dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/udp/udp.vue

@ -205,7 +205,13 @@
this.syncDefine = dag.syncDefine
this.timeout = dag.timeout || 0
this.checkedTimeout = this.timeout !== 0
this.tenantId = dag.tenantId || -1
if (dag.tenantId === -1) {
this.tenantId = this.store.state.user.userInfo.tenantId
} else {
this.tenantId = dag.tenantId
}
},
mounted () {},
components: {FormTenant, mLocalParams }

Loading…
Cancel
Save