From 542bf257294438919e0736ceacfa2fc0490fce25 Mon Sep 17 00:00:00 2001 From: Akshay Kumar Sharma Date: Wed, 29 Mar 2023 17:41:46 +0530 Subject: [PATCH] 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, });