From 88d07ce603ac74b9a096118f59cce1564dad578c Mon Sep 17 00:00:00 2001 From: Elizabeth Thompson Date: Thu, 15 Aug 2024 09:24:51 -0700 Subject: [PATCH] fix: only show dataset name in list (#29944) --- superset-frontend/src/pages/ChartList/index.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/superset-frontend/src/pages/ChartList/index.tsx b/superset-frontend/src/pages/ChartList/index.tsx index 60c7b5daf..ce00d348d 100644 --- a/superset-frontend/src/pages/ChartList/index.tsx +++ b/superset-frontend/src/pages/ChartList/index.tsx @@ -378,7 +378,11 @@ function ChartList(props: ChartListProps) { datasource_url: dsUrl, }, }, - }: any) => {dsNameTxt}, + }: any) => ( + + {dsNameTxt?.split('.')[1]} + + ), Header: t('Dataset'), accessor: 'datasource_id', disableSortBy: true,