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 4f57ed3 commit fbd641f
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 @@ -212,6 +212,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/views/CRUD/data/dataset/DatasetList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,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 fbd641f

Please sign in to comment.