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

[superset] 25/34: initial fix (#16212)

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

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

commit f749834a1a8fd04ef7cf4114b0ff68b36905fca7
Author: Phillip Kelley-Dotson <pk...@yahoo.com>
AuthorDate: Wed Aug 11 15:50:50 2021 -0700

    initial fix (#16212)
    
    (cherry picked from commit c79de7abd71a7548d02d5c1e1636384a42445e84)
---
 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 d9654b6..d487e8a 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;
   };