Here is my code:
@startuml
|User1|
start
|User1|
repeat :Step1;
:Step2;
|User2|
: Step3;
backward :Step4;
repeat while (condition?) is (No) not (Yes)
:Step5;
stop
@enduml
When I don't use "skinparam conditionStyle InsideDiamond" it show correct.
But when I add "skinparam conditionStyle InsideDiamond", condition box shape change to other side, it also can not show "Yes/No" label:
Is it a bug or I have wrong syntax?