From 2b1275d8c4dd0dbaa4c034b6454da0df109e2aa4 Mon Sep 17 00:00:00 2001 From: "Michael S. Molina" <70410625+michael-s-molina@users.noreply.github.com> Date: Thu, 29 Jun 2023 17:11:25 -0300 Subject: [PATCH] fix: Error when searching for a dashboard in the chart list (#24546) --- superset-frontend/src/pages/ChartList/index.tsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/superset-frontend/src/pages/ChartList/index.tsx b/superset-frontend/src/pages/ChartList/index.tsx index c853c40d8f..ef1f9374e4 100644 --- a/superset-frontend/src/pages/ChartList/index.tsx +++ b/superset-frontend/src/pages/ChartList/index.tsx @@ -270,8 +270,8 @@ function ChartList(props: ChartListProps) { ? { filters: [ { - col: 'dashboards', - opr: FilterOperator.relationManyMany, + col: 'dashboard_title', + opr: FilterOperator.startsWith, value: filterValue, }, ], @@ -287,9 +287,7 @@ function ChartList(props: ChartListProps) { ...filters, }); const response: void | JsonResponse = await SupersetClient.get({ - endpoint: !filterValue - ? `/api/v1/dashboard/?q=${queryParams}` - : `/api/v1/chart/?q=${queryParams}`, + endpoint: `/api/v1/dashboard/?q=${queryParams}`, }).catch(() => addDangerToast(t('An error occurred while fetching dashboards')), );