From 77e2e6b51a03b62bace1ac5cf37616c4c4305561 Mon Sep 17 00:00:00 2001 From: "Elay Aharoni (EXT-Nokia)" Date: Thu, 22 Aug 2024 18:30:59 +0300 Subject: [PATCH] first time choosing a pipeline definition is VERY slow #10897 Signed-off-by: Elay Aharoni (EXT-Nokia) --- frontend/src/pages/NewRunSwitcher.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/NewRunSwitcher.tsx b/frontend/src/pages/NewRunSwitcher.tsx index fb2e4147a74..d0d11f50823 100644 --- a/frontend/src/pages/NewRunSwitcher.tsx +++ b/frontend/src/pages/NewRunSwitcher.tsx @@ -162,7 +162,7 @@ function NewRunSwitcher(props: PageProps) { recurringRunIsFetching || pipelineIsFetching || pipelineVersionIsFetching || - v1TemplateStrIsFetching || + (!isTemplateV2(templateString) && v1TemplateStrIsFetching) || experimentIsFetching ) { return
Currently loading pipeline information
;