SIngle database entry is duplicated

0 votes
asked Apr 26, 2019 in Bug by rd27 (460 points)

The following snippet results in two database objects connected by a dashed line rather than just one in 1.2019.5.

@startuml

database x

@enduml

commented May 12, 2019 by anonymous
It looks if only one element exists will always have the same problem,

@startuml
actor Customer
@enduml

fix it by
@startuml
actor Customer

usecase UseCase1
hide UseCase1
@enduml

1 Answer

0 votes
answered Apr 29, 2019 by Serge Wenger Work (15,620 points)

Hello,

It is a sequence diagram.

You can use this workaround:

@startuml
Component a
hide a
database x
@enduml

I don't how to specify the diagram type

...