Crash when note on object member

0 votes
asked Mar 8, 2022 in Bug by mirecg (220 points)

Hello, when trying to point note to a specific member in object, it causes plantuml to crash:

@startuml
object Obj {
  Id = "1"
  Name = "test"
}

note right of Obj::Name
  Name of object
end note
@enduml

http://www.plantuml.com/plantuml/uml/SoWkIImgAStDuSfFoafDBb7mJyfIgEPIKF1CKR1LK39K0ZBz4dDJGPoIrE8I9QvQBgwy_99KXQBCz8mIXVmqa0uhAv0Qg5AG6CGmhjIy50MGOYu780je2G00

when using class it works fine:

@startuml
class Obj {
  Id = "1"
  Name = "test"
}

note right of Obj::Name
  Name of object
end note
@enduml

1 Answer

0 votes
answered Mar 9, 2022 by plantuml (294,960 points)
selected Mar 10, 2022 by mirecg
 
Best answer
Thanks for the report.

This has been fixed on the online server.
...