Skip to content

Commit

Permalink
Use description column as name from CommCare HQ
Browse files Browse the repository at this point in the history
  • Loading branch information
sravfeyn authored and kaapstorm committed Feb 4, 2024
1 parent 73c1c0e commit 9d01f0d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,10 @@ const ChangeDatasourceModal: FunctionComponent<ChangeDatasourceModalProps> = ({
Header: t('Name'),
accessor: 'table_name',
},
{
Header: t('Name in CommCare HQ'),
accessor: 'description',
},
{
Header: t('Type'),
accessor: 'kind',
Expand Down
5 changes: 5 additions & 0 deletions superset-frontend/src/pages/DatasetList/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,11 @@ const DatasetList: FunctionComponent<DatasetListProps> = ({
Header: t('Name'),
accessor: 'table_name',
},
{
Header: t('Name in CommCare HQ'),
accessor: 'description',
size: 'lg',
},
{
Cell: ({
row: {
Expand Down

0 comments on commit 9d01f0d

Please sign in to comment.