diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/udp/udp.vue b/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/udp/udp.vue index cfbf5de01d..b9610cbc7b 100644 --- a/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/udp/udp.vue +++ b/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/udp/udp.vue @@ -205,12 +205,13 @@ this.syncDefine = dag.syncDefine this.timeout = dag.timeout || 0 this.checkedTimeout = this.timeout !== 0 - - if (dag.tenantId === -1) { + this.$nextTick(() => { + if (dag.tenantId === -1) { this.tenantId = this.store.state.user.userInfo.tenantId - } else { + } else { this.tenantId = dag.tenantId - } + } + }) }, mounted () {}, diff --git a/dolphinscheduler-ui/src/js/conf/home/store/security/actions.js b/dolphinscheduler-ui/src/js/conf/home/store/security/actions.js index 10a2bf1e52..047640f7db 100644 --- a/dolphinscheduler-ui/src/js/conf/home/store/security/actions.js +++ b/dolphinscheduler-ui/src/js/conf/home/store/security/actions.js @@ -282,7 +282,7 @@ export default { let list=res.data list.unshift({ id: -1, - tenantName: 'Default' + tenantName: 'default' }) state.tenantAllList = list resolve(list)