plantuml / plantuml

Generate diagrams from textual description
https://plantuml.com
Other
10.05k stars 915 forks source link

Incorrect object reference in Gantt Chart #1809

Open cilerler opened 1 month ago

cilerler commented 1 month ago

I've encountered an issue with the Gantt chart where it treats T and Z as the same object, despite being defined separately using the as keyword. Below is the snippet demonstrating the problem:

@startgantt
[Prototype design] as [D] requires 15 days
[Test prototype] as [T] requires 10 days
[T] starts at [D]'s end
[Test prototype] as [Z] requires 3 days
@endgantt

Expected behavior:

T and Z should be recognized as distinct objects.

Actual behavior

T and Z are treated as the same object.

The-Lum commented 1 month ago

[Just for the record] See similar report/request here:

Regards, Th.

cilerler commented 1 month ago

@The-Lum, you're really good at finding these 👏🏻😎. I missed that one, thanks for pointing it out.