Skip to content

Commit

Permalink
[RHOAIENG-4996] Show popover help for non-empty pipelines/notebooks c…
Browse files Browse the repository at this point in the history
…ards
  • Loading branch information
jeff-phillips-18 committed Apr 3, 2024
1 parent 42c0f11 commit 9985585
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,6 @@ const NotebooksCard: React.FC = () => {
objectType={ProjectObjectType.notebook}
sectionType={SectionType.training}
title="Workbenches"
popoverHeaderContent="About workbenches"
popoverBodyContent="Creating a workbench allows you to add a Jupyter notebook to your project."
>
<CardBody>
<EnsureCompatiblePipelineServer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,9 @@ const PipelinesCard: React.FC = () => {
objectType={ProjectObjectType.pipeline}
sectionType={pipelinesCount ? SectionType.training : SectionType.organize}
title="Pipelines"
popoverHeaderContent={!pipelinesCount ? 'About pipelines' : undefined}
popoverHeaderContent={pipelinesCount ? 'About pipelines' : undefined}
popoverBodyContent={
!pipelinesCount
pipelinesCount
? 'Standardize and automate machine learning workflows to enable you to further enhance and deploy your data science models.'
: undefined
}
Expand Down

0 comments on commit 9985585

Please sign in to comment.