From f2e4c438e797ca073610de4cb20efe611ae0bf1b Mon Sep 17 00:00:00 2001 From: Zain Rizvi Date: Wed, 11 Dec 2024 12:41:15 -0600 Subject: [PATCH] [EZ] Metrics page bugfix (#6041) Fixes a bug @clee2000 pointed out in https://github.com/pytorch/test-infra/pull/6039/files#r1879220367 (that PR got merged before I could push the fix) --- torchci/pages/metrics.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torchci/pages/metrics.tsx b/torchci/pages/metrics.tsx index 3d48217ea3..49e8688a17 100644 --- a/torchci/pages/metrics.tsx +++ b/torchci/pages/metrics.tsx @@ -353,7 +353,7 @@ function WorkflowDuration({ // -1 is the specical case where we will show the avg instead if (percentile === -1) { - title = `avg ${workflowNames.join(", ")} workflow duration`; + title = `avg ${workflowNames.join(", ")} TTS`; queryName = queryName.replace("percentile", "avg"); }