Skip to content

Commit

Permalink
[Fix][UI Next][V1.0.0-Alpha] Fix tenant not exists error while import…
Browse files Browse the repository at this point in the history
… workflow. (#8797)
  • Loading branch information
Amy0104 authored Mar 10, 2022
1 parent 38fba60 commit bb1ba96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bb1ba96

Please sign in to comment.