Skip to content

Commit

Permalink
change filter (#16280)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkdotson authored Aug 17, 2021
1 parent f5fbfef commit f581e04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superset-frontend/src/views/CRUD/welcome/DashboardTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ function DashboardTable({
const filters = [];
if (filterName === 'Mine') {
filters.push({
id: 'owners',
operator: 'rel_m_m',
id: 'created_by',
operator: 'rel_o_m',
value: `${user?.userId}`,
});
} else if (filterName === 'Favorite') {
Expand Down

0 comments on commit f581e04

Please sign in to comment.