diff --git a/openmetadata-ui/src/main/resources/ui/src/components/PipelineDetails/PipelineDetails.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/PipelineDetails/PipelineDetails.component.tsx index d83c4b60e5f..47c1ad344b8 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/PipelineDetails/PipelineDetails.component.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/PipelineDetails/PipelineDetails.component.tsx @@ -70,6 +70,7 @@ import { showErrorToast, showSuccessToast } from '../../utils/ToastUtils'; import ActivityThreadPanel from '../ActivityFeed/ActivityThreadPanel/ActivityThreadPanel'; import { withActivityFeed } from '../AppRouter/withActivityFeed'; import { useAuthContext } from '../Auth/AuthProviders/AuthProvider'; +import { OwnerLabel } from '../common/OwnerLabel/OwnerLabel.component'; import EntityRightPanel from '../Entity/EntityRightPanel/EntityRightPanel'; import Lineage from '../Lineage/Lineage.component'; import LineageProvider from '../LineageProvider/LineageProvider'; @@ -423,6 +424,15 @@ const PipelineDetails = ({ /> ), }, + { + title: t('label.owner'), + dataIndex: 'owner', + key: 'owner', + width: 120, + accessor: 'owner', + filterIcon: getFilterIcon('tag-filter'), + render: (owner) => , + }, { title: t('label.tag-plural'), dataIndex: 'tags',