diff --git a/superset-frontend/src/views/CRUD/dashboard/DashboardList.tsx b/superset-frontend/src/views/CRUD/dashboard/DashboardList.tsx index f2eda98874..b972e7f6e0 100644 --- a/superset-frontend/src/views/CRUD/dashboard/DashboardList.tsx +++ b/superset-frontend/src/views/CRUD/dashboard/DashboardList.tsx @@ -463,6 +463,13 @@ function DashboardList(props: DashboardListProps) { const filters: Filters = useMemo( () => [ + { + Header: t('Search'), + key: 'search', + id: 'dashboard_title', + input: 'search', + operator: FilterOperator.titleOrSlug, + }, { Header: t('Owner'), key: 'owner', @@ -533,13 +540,6 @@ function DashboardList(props: DashboardListProps) { { label: t('No'), value: false }, ], }, - { - Header: t('Search'), - key: 'search', - id: 'dashboard_title', - input: 'search', - operator: FilterOperator.titleOrSlug, - }, ], [addDangerToast, favoritesFilter, props.user], );