We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edd94b6 commit 88d07ceCopy full SHA for 88d07ce
superset-frontend/src/pages/ChartList/index.tsx
@@ -378,7 +378,11 @@ function ChartList(props: ChartListProps) {
378
datasource_url: dsUrl,
379
},
380
381
- }: any) => <GenericLink to={dsUrl}>{dsNameTxt}</GenericLink>,
+ }: any) => (
382
+ <Tooltip title={dsNameTxt} placement="top">
383
+ <GenericLink to={dsUrl}>{dsNameTxt?.split('.')[1]}</GenericLink>
384
+ </Tooltip>
385
+ ),
386
Header: t('Dataset'),
387
accessor: 'datasource_id',
388
disableSortBy: true,
0 commit comments