Hi Everyone,
I'm struggling to understand why activity labels are not vertically aligned when building activity diagram using swimlanes.
Here mi my example:
@startuml
skinparam style strictuml
|Team A|
start
:init;
|Team B|
if (valid?) is (yes) then
if (special case?) is (yes) then
:send question;
|Team A|
:provide info;
|Team B|
:special object created;
else (no)
:object created;
endif
:finishing;
else (no)
|Team B|
:reject;
stop
endif
|Team A|
:use new object;
end
@enduml
The issue here is that "provide info" label is for some reason brought to the left side in "Team A" swimlane.
If I remove "provide info" label then all labels in "Team A" are perfectly horizontally aligned.
Am I doing something wrong or is there any trick to fix that?