You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the Bug
In bpmn-js version 3.* when I create child lane in a lane, exported XML has bpmn2:childLaneSet XML node and define child lanes in this node.
In new version (also online demo), when I create child lane, in exported XML I've not bpmn2:childLaneSet .
Steps to Reproduce
1- I create a bpmn diagram in old version (3.*)
With diagram-js@5 we've introduced the CreateBehavior that ensures
elements are not created on top of lanes but always on top of the actual
participant.
Unfortunately we forgot about the fact that lanes are created once in a
while, too.
This commit accounts for this fact and ensures we do not adjust the
parent of to-be-created lanes.
(A test cases for splitting nested lanes did not exist until now).
Closes#1254Closes#1253
With diagram-js@5 we've introduced the CreateBehavior that ensures
elements are not created on top of lanes but always on top of the actual
participant.
Unfortunately we forgot about the fact that lanes are created once in a
while, too.
This commit accounts for this fact and ensures we do not adjust the
parent of to-be-created lanes.
(A test cases for splitting nested lanes did not exist until now).
Closes#1254Closes#1253
Describe the Bug
In bpmn-js version 3.* when I create child lane in a lane, exported XML has
bpmn2:childLaneSet
XML node and define child lanes in this node.In new version (also online demo), when I create child lane, in exported XML I've not
bpmn2:childLaneSet
.Steps to Reproduce
1- I create a bpmn diagram in old version (3.*)
And in exported XML I've like this:
2- And again, I create above diagram in new version on online demo and when export as xml, I've this:
Environment
The text was updated successfully, but these errors were encountered: