Remove the arrow from the Box

0 votes
asked Aug 24, 2021 in Question / help by StewiC (120 points)
edited Aug 24, 2021 by StewiC

Hi,

could you please suggest how to remove the Go home arrow? See below code below

@startuml
!pragma useVerticalIf on
start
if (Foo = Active) then (false);
  stop
'.............................
else  (true);
#palegreen:Go-Home;
@enduml

 

  

1 Answer

0 votes
answered Aug 24, 2021 by The-Lu (64,760 points)

Hello S.,

For that you can use:

  • detach
  • or kill
@startuml
!pragma useVerticalIf on
start
if (Foo = Active) then (false);
  stop
'.............................
else  (true);
#palegreen:Go-Home;
detach
@enduml

See doc. here:

Regards,
Th.

...