diff --git a/frontend/src/concepts/pipelines/content/pipelinesDetails/pipelineRun/PipelineRunDrawerRightContent.tsx b/frontend/src/concepts/pipelines/content/pipelinesDetails/pipelineRun/PipelineRunDrawerRightContent.tsx index 87fb500b60..f556b78bb2 100644 --- a/frontend/src/concepts/pipelines/content/pipelinesDetails/pipelineRun/PipelineRunDrawerRightContent.tsx +++ b/frontend/src/concepts/pipelines/content/pipelinesDetails/pipelineRun/PipelineRunDrawerRightContent.tsx @@ -5,13 +5,17 @@ import { DrawerHead, DrawerPanelBody, DrawerPanelContent, - Text, + Flex, + Popover, Title, } from '@patternfly/react-core'; +import { OutlinedQuestionCircleIcon } from '@patternfly/react-icons'; import PipelineRunDrawerRightTabs from '~/concepts/pipelines/content/pipelinesDetails/pipelineRun/PipelineRunDrawerRightTabs'; import './PipelineRunDrawer.scss'; import { PipelineTask } from '~/concepts/pipelines/topology'; import { Execution } from '~/third_party/mlmd'; +import DashboardPopupIconButton from '~/concepts/dashboard/DashboardPopupIconButton'; +import InlineTruncatedClipboardCopy from '~/components/InlineTruncatedClipboardCopy'; import { ArtifactNodeDrawerContent } from './artifacts'; type PipelineRunDrawerRightContentProps = { @@ -48,7 +52,24 @@ const PipelineRunDrawerRightContent: React.FC {task.name} - {task.status?.podName && {task.status.podName}} + {task.status?.podName && ( + + + + } + aria-label="More info" + /> + + + )}