Skip to content

Commit

Permalink
fix: 修复服务模板新建进程参数类型错误的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
yangyy committed Dec 21, 2021
1 parent 93ee211 commit 8d26177
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/src/views/service-template/children/operational.vue
Original file line number Diff line number Diff line change
Expand Up @@ -558,8 +558,8 @@
}
})
})
} else if (data[key]?.value) {
data[key].value = this.$tools.formatValue(data[key]?.value, property)
} else if (typeof data[key] === 'object') {
data[key].value = this.$tools.formatValue(data[key].value, property)
}
})
return data
Expand Down

0 comments on commit 8d26177

Please sign in to comment.