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')), );