Some arrows from json component to another component fail

0 votes
asked Sep 30, 2022 in Bug by boshka (3,940 points)

Hi! The following code breaks:

@startuml

json "some json" as a {
 "a": 1
}

component b {
}

a ->> b

@enduml

this will work if you replace the arrow from ->> to ->

However, should work with all arrow tips

1 Answer

0 votes
answered Feb 23, 2023 by The-Lu (63,920 points)

Hello B., and all,

It seems work with last version (But I don't know from which version...)[Only tested on v1.2023.2beta4], it is now fixed...

@startuml
json "some json" as a {
 "a": 1
}
component b {
}
a ->> b
@enduml

Regards.

...