Skip to content

Commit

Permalink
Update TimelineGraph.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
LPeter1997 committed Sep 21, 2023
1 parent 9d73558 commit ef70f50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Draco.Trace.Visualizer/src/TimelineGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ const TimelineGraph = (props: Props) => {
const allNodes = svg
.selectAll('g')
.data(messageHierarchy.descendants())
.join('g');
.enter()
.append('g');

allNodes
.append('rect')
Expand Down

0 comments on commit ef70f50

Please sign in to comment.