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.
I've encountered an issue with the Gantt chart where it treats
TandZas the same object, despite being defined separately using theaskeyword. Below is the snippet demonstrating the problem:Expected behavior:
T and Z should be recognized as distinct objects.
Actual behavior
T and Z are treated as the same object.