fix: only show dataset name in list (#29944)

This commit is contained in:
Elizabeth Thompson 2024-08-15 09:24:51 -07:00 committed by GitHub
parent edd94b66e5
commit 88d07ce603
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -378,7 +378,11 @@ function ChartList(props: ChartListProps) {
datasource_url: dsUrl,
},
},
}: any) => <GenericLink to={dsUrl}>{dsNameTxt}</GenericLink>,
}: any) => (
<Tooltip title={dsNameTxt} placement="top">
<GenericLink to={dsUrl}>{dsNameTxt?.split('.')[1]}</GenericLink>
</Tooltip>
),
Header: t('Dataset'),
accessor: 'datasource_id',
disableSortBy: true,