diff --git a/superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx b/superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx index abdc8a10d49e0..d427858f59c92 100644 --- a/superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx +++ b/superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx @@ -200,6 +200,10 @@ const ChangeDatasourceModal: FunctionComponent = ({ }; const columns = [ + { + Header: t('Description'), + accessor: 'description', + }, { Cell: ({ row: { original } }: any) => ( } > - {item.table_name} + {item.description} ); } diff --git a/superset-frontend/src/pages/DatasetList/index.tsx b/superset-frontend/src/pages/DatasetList/index.tsx index 6d13580e537f6..f7bf6dcbbb1b5 100644 --- a/superset-frontend/src/pages/DatasetList/index.tsx +++ b/superset-frontend/src/pages/DatasetList/index.tsx @@ -304,6 +304,11 @@ const DatasetList: FunctionComponent = ({ size: 'xs', id: 'id', }, + { + Header: t('Description'), + accessor: 'description', + size: 'md', + }, { Cell: ({ row: {