You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by pk...@apache.org on 2021/08/17 16:38:27 UTC

[superset] branch master updated: change filter (#16280)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new f581e04  change filter (#16280)
f581e04 is described below

commit f581e0402b615ae0b355a11b39ec245f97ff2115
Author: Phillip Kelley-Dotson <pk...@yahoo.com>
AuthorDate: Tue Aug 17 09:37:39 2021 -0700

    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 3e04f93..a6c470a 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') {