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

(cherry picked from commit 9ad119b)
  • Loading branch information
pkdotson authored and cccs-RyanS committed Dec 17, 2021
1 parent 6221c03 commit 97cf58d
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 97cf58d

Please sign in to comment.