From d23963e8ca4f706cc70953ceea504004ef924d9d Mon Sep 17 00:00:00 2001 From: ElayAharoni <62550608+ElayAharoni@users.noreply.github.com> Date: Mon, 16 Sep 2024 21:16:25 +0300 Subject: [PATCH] fix(frontend): first time choosing a pipeline definition is VERY slow. Fixes #10897 (#11130) Signed-off-by: Elay Aharoni (EXT-Nokia) Co-authored-by: Elay Aharoni (EXT-Nokia) Signed-off-by: sefgsefg --- 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 fb2e4147a740..d0d11f50823a 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
;