From 33f29061ecd1a6bbe4527e6a4d8d739efd83db73 Mon Sep 17 00:00:00 2001 From: Christian Vogt Date: Thu, 30 May 2024 16:57:18 -0400 Subject: [PATCH] fix info popover for pipeline overview card --- .../detail/overview/trainModels/PipelinesOverviewCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/projects/screens/detail/overview/trainModels/PipelinesOverviewCard.tsx b/frontend/src/pages/projects/screens/detail/overview/trainModels/PipelinesOverviewCard.tsx index 4fc5f5b648..e514023e6a 100644 --- a/frontend/src/pages/projects/screens/detail/overview/trainModels/PipelinesOverviewCard.tsx +++ b/frontend/src/pages/projects/screens/detail/overview/trainModels/PipelinesOverviewCard.tsx @@ -18,7 +18,7 @@ const PipelinesOverviewCard: React.FC = ({ title="Pipelines" popoverHeaderContent={pipelinesCount ? 'About pipelines' : undefined} popoverBodyContent={ - !pipelinesCount + pipelinesCount ? 'Pipelines are platforms for building and deploying portable and scalable machine-learning (ML) workflows. You can import a pipeline or create one in a workbench.' : undefined }