Skip to content

Commit

Permalink
fix: sorting on "Modified By" in chart table (apache#16208)
Browse files Browse the repository at this point in the history
* initial fix

* Update ChartList.tsx

change sort to first name
  • Loading branch information
pkdotson authored Aug 11, 2021
1 parent 1c93bed commit 9ad119b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset-frontend/src/views/CRUD/chart/ChartList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ function ChartList(props: ChartListProps) {
</a>
),
Header: t('Modified by'),
accessor: 'last_saved_by',
accessor: 'last_saved_by.first_name',
size: 'xl',
},
{
Expand Down

0 comments on commit 9ad119b

Please sign in to comment.