mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-01 03:37:46 +08:00
[Improvement-4740][UI] Set the default Tenant as default or the first exist tenant in save process (#4742)
This commit is contained in:
parent
cbada7c16d
commit
60016fbd66
@ -213,10 +213,10 @@
|
||||
this.timeout = dag.timeout || 0
|
||||
this.checkedTimeout = this.timeout !== 0
|
||||
this.$nextTick(() => {
|
||||
if (dag.tenantId === -1) {
|
||||
this.tenantId = this.store.state.user.userInfo.tenantId
|
||||
} else {
|
||||
if (dag.tenantId > -1) {
|
||||
this.tenantId = dag.tenantId
|
||||
} else if (this.store.state.user.userInfo.tenantId) {
|
||||
this.tenantId = this.store.state.user.userInfo.tenantId
|
||||
}
|
||||
})
|
||||
},
|
||||
|
@ -293,7 +293,7 @@
|
||||
this.email = this.item.email
|
||||
this.phone = this.item.phone
|
||||
this.userState = this.item.state + '' || '1'
|
||||
if (this.item.tenantName) {
|
||||
if (this.item.tenantId) {
|
||||
this.tenantId = this.item.tenantId
|
||||
}
|
||||
this.$nextTick(() => {
|
||||
@ -311,7 +311,7 @@
|
||||
this.email = this.item.email
|
||||
this.phone = this.item.phone
|
||||
this.userState = this.state + '' || '1'
|
||||
if (this.item.tenantName) {
|
||||
if (this.item.tenantId) {
|
||||
this.tenantId = this.item.tenantId
|
||||
}
|
||||
if (this.queueList.length > 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user