Skip to content

Commit

Permalink
fix(sqllab): fix error due to anonymous user (apache#14390)
Browse files Browse the repository at this point in the history
  • Loading branch information
villebro authored Apr 28, 2021
1 parent bbdb4ee commit 183b5ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset-frontend/src/views/CRUD/data/query/QueryList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ function QueryList({ addDangerToast, addSuccessToast }: QueryListProps) {
row: {
original: { user },
},
}: any) => `${user.first_name} ${user.last_name}`,
}: any) => (user ? `${user.first_name} ${user.last_name}` : ''),
},
{
accessor: QueryObjectColumns.user,
Expand Down

0 comments on commit 183b5ae

Please sign in to comment.