From 47f920bfc0fa5bda684ba02b02d4e516e418933a Mon Sep 17 00:00:00 2001 From: Anton Gilgur <4970083+agilgur5@users.noreply.github.com> Date: Sun, 21 Apr 2024 23:39:41 -0400 Subject: [PATCH] fix(ui): remove unnecessary hard reload after delete (#12930) Signed-off-by: Anton Gilgur (cherry picked from commit b1c37686c35b78fc93a025f37469591ef5de0c1b) --- .../workflows/components/workflow-details/workflow-details.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/ui/src/app/workflows/components/workflow-details/workflow-details.tsx b/ui/src/app/workflows/components/workflow-details/workflow-details.tsx index 7dc0d7fecdc4..9bae27258002 100644 --- a/ui/src/app/workflows/components/workflow-details/workflow-details.tsx +++ b/ui/src/app/workflows/components/workflow-details/workflow-details.tsx @@ -211,9 +211,6 @@ export function WorkflowDetails({history, location, match}: RouteComponentProps< } navigation.goto(uiUrl(`workflows/${workflow.metadata.namespace}`)); - // TODO: This is a temporary workaround so that the list of workflows - // is correctly displayed. Workflow list page needs to be more responsive. - window.location.reload(); }); } else if (workflowOperation.title === 'RESUBMIT') { setSidePanel('resubmit');