From bd804012a1083f2ec338a9055f7a61445291a0dc Mon Sep 17 00:00:00 2001 From: Phillip Kelley-Dotson Date: Wed, 11 Aug 2021 15:50:50 -0700 Subject: [PATCH] initial fix (#16212) --- superset-frontend/src/views/CRUD/welcome/ChartTable.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/superset-frontend/src/views/CRUD/welcome/ChartTable.tsx b/superset-frontend/src/views/CRUD/welcome/ChartTable.tsx index d9654b63dc445..d487e8a246c8b 100644 --- a/superset-frontend/src/views/CRUD/welcome/ChartTable.tsx +++ b/superset-frontend/src/views/CRUD/welcome/ChartTable.tsx @@ -132,6 +132,12 @@ function ChartTable({ operator: 'chart_is_favorite', value: true, }); + } else if (filterName === 'Examples') { + filters.push({ + id: 'created_by', + operator: 'rel_o_m', + value: 0, + }); } return filters; };