Unverified Commit e1613e87 authored by Jingyu Feng(冯经宇)'s avatar Jingyu Feng(冯经宇) Committed by GitHub
Browse files

Merge pull request #2196 from WeBankPartners/fix_workflow_bug

fix workflow orch create bug
parents cca98477 a2e92e70
Showing with 4 additions and 1 deletion
+4 -1
......@@ -875,7 +875,10 @@ export default {
let pluginFormCopy = JSON.parse(JSON.stringify(this.pluginForm))
// 校验必填项,未选中节点跳过校验
if ('nodeDefId' in pluginFormCopy) {
if (
this.currentNode.id &&
(this.currentNode.id.startsWith('SubProcess_') || this.currentNode.id.startsWith('Task_'))
) {
const res = this.checkSaveParams(pluginFormCopy)
if (!res) return
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment