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 2023/03/29 12:12:06 UTC

[superset] branch master updated: fix(dashboards): apply tag filter correctly (#23521)

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

villebro 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 542bf25729 fix(dashboards): apply tag filter correctly (#23521)
542bf25729 is described below

commit 542bf257294438919e0736ceacfa2fc0490fce25
Author: Akshay Kumar Sharma <ak...@gmail.com>
AuthorDate: Wed Mar 29 17:41:46 2023 +0530

    fix(dashboards): apply tag filter correctly (#23521)
---
 superset-frontend/src/pages/DashboardList/index.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/src/pages/DashboardList/index.tsx b/superset-frontend/src/pages/DashboardList/index.tsx
index f8a2ea31aa..d4c484043d 100644
--- a/superset-frontend/src/pages/DashboardList/index.tsx
+++ b/superset-frontend/src/pages/DashboardList/index.tsx
@@ -596,7 +596,7 @@ function DashboardList(props: DashboardListProps) {
         key: 'tags',
         id: 'tags',
         input: 'select',
-        operator: FilterOperator.chartTags,
+        operator: FilterOperator.dashboardTags,
         unfilteredLabel: t('All'),
         fetchSelects: loadTags,
       });