From f581e0402b615ae0b355a11b39ec245f97ff2115 Mon Sep 17 00:00:00 2001 From: Phillip Kelley-Dotson Date: Tue, 17 Aug 2021 09:37:39 -0700 Subject: [PATCH] change filter (#16280) --- superset-frontend/src/views/CRUD/welcome/DashboardTable.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superset-frontend/src/views/CRUD/welcome/DashboardTable.tsx b/superset-frontend/src/views/CRUD/welcome/DashboardTable.tsx index 3e04f930c038a..a6c470aae9a42 100644 --- a/superset-frontend/src/views/CRUD/welcome/DashboardTable.tsx +++ b/superset-frontend/src/views/CRUD/welcome/DashboardTable.tsx @@ -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') {