This is an automated email from the ASF dual-hosted git repository.

villebro pushed a commit to branch 1.3
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 31c57db0aa1ccc9e020b81d3f80c07f66cfe0c22
Author: Phillip Kelley-Dotson <[email protected]>
AuthorDate: Wed Aug 11 15:31:10 2021 -0700

    fix: sorting on "Modified By" in chart table (#16208)
    
    * initial fix
    
    * Update ChartList.tsx
    
    change sort to first name
    
    (cherry picked from commit b4555dfa4f739eb9c59e7a24f3c0beef66065057)
---
 superset-frontend/src/views/CRUD/chart/ChartList.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/src/views/CRUD/chart/ChartList.tsx 
b/superset-frontend/src/views/CRUD/chart/ChartList.tsx
index 6393616..e4aff81 100644
--- a/superset-frontend/src/views/CRUD/chart/ChartList.tsx
+++ b/superset-frontend/src/views/CRUD/chart/ChartList.tsx
@@ -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',
       },
       {

Reply via email to