#5237 added state refactor test page

This commit is contained in:
Ashish Jain 2024-05-08 14:13:19 +02:00
parent 683695bec2
commit 7372d9055a
2 changed files with 1004 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@ -755,7 +755,7 @@ const dataFetcher = (parent, parsedItem, diagramStates, nodes, edges, altFlag, u
* @param nodeData
*/
function insertOrUpdateNode(nodes, nodeData) {
if (!nodeData.id || nodeData.id === '</join></fork>') {
if (!nodeData.id || nodeData.id === '</join></fork>' || nodeData.id === '</choice>') {
return;
}
const existingNodeData = nodes.find((node) => node.id === nodeData.id);