Commit 59ed1134 authored by 皮倩雯's avatar 皮倩雯

fix: '修复流程中心大保存网关配置规则失败问题'

parent e1ddb7b2
Pipeline #83736 passed with stages
...@@ -1300,7 +1300,7 @@ const FlowChart = props => { ...@@ -1300,7 +1300,7 @@ const FlowChart = props => {
let list = new Set([]); let list = new Set([]);
let errorList = new Set(); let errorList = new Set();
diagramObj.nodeDataArray.forEach(item => { diagramObj.nodeDataArray.forEach(item => {
if ((item.NodeType !== '20' || item.NodeType !== '21') && item.RuleList) { if (item.NodeType !== '20' && item.NodeType !== '21' && item.RuleList) {
item.RuleList = []; item.RuleList = [];
} }
if (item.NodeType === '1' || item.NodeType === '1' || item.NodeType === '1') { if (item.NodeType === '1' || item.NodeType === '1' || item.NodeType === '1') {
......
Markdown is supported
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