From bdfef0318bd59e928138335fe1ae411eb9f5963d Mon Sep 17 00:00:00 2001 From: pnaik1 Date: Thu, 30 May 2024 15:33:13 +0530 Subject: [PATCH] Reloads the pae after deleting DSPv1 pipeline server --- .../concepts/pipelines/EnsureCompatiblePipelineServer.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/frontend/src/concepts/pipelines/EnsureCompatiblePipelineServer.tsx b/frontend/src/concepts/pipelines/EnsureCompatiblePipelineServer.tsx index 5e4f58b9b7..c2c3985069 100644 --- a/frontend/src/concepts/pipelines/EnsureCompatiblePipelineServer.tsx +++ b/frontend/src/concepts/pipelines/EnsureCompatiblePipelineServer.tsx @@ -12,11 +12,10 @@ import { EmptyStateIcon, } from '@patternfly/react-core'; import { ExclamationTriangleIcon } from '@patternfly/react-icons'; -import DeletePipelineServerModal from '~/concepts/pipelines/content/DeletePipelineServerModal'; import ExternalLink from '~/components/ExternalLink'; import NoPipelineServer from '~/concepts/pipelines/NoPipelineServer'; import { useUser } from '~/redux/selectors'; -import { usePipelinesAPI } from './context'; +import { DeleteServerModal, usePipelinesAPI } from './context'; // TODO: Fix doc link to go to more docs on v2 const DOCS_LINK = @@ -85,7 +84,7 @@ const EnsureCompatiblePipelineServer: React.FC - setIsDeleting(false)} /> + setIsDeleting(false)} /> ); }