Skip to content

Commit

Permalink
Change to match new operation name - not sure it does anything
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday committed Jan 5, 2024
1 parent 175526b commit 57cfe27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp/src/src-react/util/metricGraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export class MetricGraph extends Graph2<IScope, IScopeEdge, IScope> {
vertexLabel(v: IScope, options: MetricsOptions): string {
return v.type === "activity" ? format(options.activityTpl, v) :
v.type === "function" ? v.id + "()" :
v.type === "stage" && v.id.charAt(0) === '>' ? v.id.substring(1) :
v.type === "operation" && v.id.charAt(0) === ">" ? v.id.substring(1) :
v.Label || v.id;
}

Expand Down

0 comments on commit 57cfe27

Please sign in to comment.