mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-12 12:25:16 +08:00
[Fix][UI Next][V1.0.0-Alpha] Fix tenant not exists error while import workflow. (#8797)
This commit is contained in:
parent
38fba609cb
commit
bb1ba967cd
@ -148,7 +148,7 @@ export default defineComponent({
|
||||
if (process) {
|
||||
formValue.value.name = process.name
|
||||
formValue.value.description = process.description
|
||||
formValue.value.tenantCode = process.tenantCode
|
||||
formValue.value.tenantCode = process.tenantCode || 'default'
|
||||
if (process.timeout && process.timeout > 0) {
|
||||
formValue.value.timeoutFlag = true
|
||||
formValue.value.timeout = process.timeout
|
||||
|
Loading…
Reference in New Issue
Block a user