diff --git a/frontend/src/component/feature/FeatureToggleList/FeatureToggleListTable.tsx b/frontend/src/component/feature/FeatureToggleList/FeatureToggleListTable.tsx index 59d28b1384..7d15f353a7 100644 --- a/frontend/src/component/feature/FeatureToggleList/FeatureToggleListTable.tsx +++ b/frontend/src/component/feature/FeatureToggleList/FeatureToggleListTable.tsx @@ -52,6 +52,7 @@ const columns = [ sortType: 'date', align: 'center', maxWidth: 85, + disableGlobalFilter: true, }, { Header: 'Type', @@ -59,6 +60,7 @@ const columns = [ Cell: FeatureTypeCell, align: 'center', maxWidth: 85, + disableGlobalFilter: true, }, { Header: 'Feature toggle name', @@ -73,6 +75,7 @@ const columns = [ Cell: DateCell, sortType: 'date', maxWidth: 150, + disableGlobalFilter: true, }, { Header: 'Project ID', @@ -89,6 +92,7 @@ const columns = [ Cell: FeatureStaleCell, sortType: 'boolean', maxWidth: 120, + disableGlobalFilter: true, }, // Always hidden -- for search { @@ -210,7 +214,11 @@ export const FeatureToggleListTable: VFC = () => { isLoading={loading} header={ ({ Header: loading ? () => '' : name, @@ -215,6 +218,7 @@ export const ProjectFeatureToggles = ({ minWidth: 90, accessor: `environments.${name}`, align: 'center', + disableGlobalFilter: true, Cell: ({ value, row: { original: feature }, @@ -244,6 +248,7 @@ export const ProjectFeatureToggles = ({ ), disableSortBy: true, + disableGlobalFilter: true, }, ], [projectId, environments, onToggle, loading]