From 57cfe273dc7179fcd1e2f5d41285f3fda0e001fc Mon Sep 17 00:00:00 2001 From: Gavin Halliday Date: Fri, 5 Jan 2024 14:30:36 +0000 Subject: [PATCH] Change to match new operation name - not sure it does anything Signed-off-by: Gavin Halliday --- esp/src/src-react/util/metricGraph.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esp/src/src-react/util/metricGraph.ts b/esp/src/src-react/util/metricGraph.ts index 3ae52e16323..84fb6d980e0 100644 --- a/esp/src/src-react/util/metricGraph.ts +++ b/esp/src/src-react/util/metricGraph.ts @@ -227,7 +227,7 @@ export class MetricGraph extends Graph2 { 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; }