diff --git a/superset-frontend/src/views/CRUD/utils.tsx b/superset-frontend/src/views/CRUD/utils.tsx index 6606fd459f874..3449d764abfa2 100644 --- a/superset-frontend/src/views/CRUD/utils.tsx +++ b/superset-frontend/src/views/CRUD/utils.tsx @@ -166,8 +166,8 @@ export const getUserOwnedObjects = ( resource: string, filters: Array = [ { - col: 'created_by', - opr: 'rel_o_m', + col: 'owners', + opr: 'rel_m_m', value: `${userId}`, }, ], diff --git a/superset-frontend/src/views/CRUD/welcome/Welcome.tsx b/superset-frontend/src/views/CRUD/welcome/Welcome.tsx index a1f7707a23541..056e02e8f6226 100644 --- a/superset-frontend/src/views/CRUD/welcome/Welcome.tsx +++ b/superset-frontend/src/views/CRUD/welcome/Welcome.tsx @@ -204,8 +204,8 @@ function Welcome({ user, addDangerToast }: WelcomeProps) { // Sets other activity data in parallel with recents api call const ownSavedQueryFilters = [ { - col: 'owners', - opr: 'rel_m_m', + col: 'created_by', + opr: 'rel_o_m', value: `${id}`, }, ];