fixed: #11799 owner support for pipeline tasks list (#14711)

* fixed: #11799 owner support for pipeline tasks list

* fix unit tests
This commit is contained in:
Chirag Madlani 2024-01-16 10:52:05 +05:30 committed by GitHub
parent 3291b07001
commit 5dee98f6be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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',