mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-06 04:26:57 +00:00
* fixed: #11799 owner support for pipeline tasks list * fix unit tests
This commit is contained in:
parent
3291b07001
commit
5dee98f6be
@ -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) => <OwnerLabel hasPermission={false} owner={owner} />,
|
||||
},
|
||||
{
|
||||
title: t('label.tag-plural'),
|
||||
dataIndex: 'tags',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user