From b1c37686c35b78fc93a025f37469591ef5de0c1b 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 --- .../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 ca04b59d7154..ee35494005c4 100644 --- a/ui/src/app/workflows/components/workflow-details/workflow-details.tsx +++ b/ui/src/app/workflows/components/workflow-details/workflow-details.tsx @@ -212,9 +212,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');