1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Remove Namespace filter from ItemListLayout

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-06-03 14:50:02 -04:00
parent c0967193da
commit 9c31633da0
2 changed files with 1 additions and 4 deletions

View File

@ -404,9 +404,7 @@ export class ItemListLayout extends React.Component<ItemListLayoutProps> {
filters: (
<>
{showNamespaceSelectFilter && <NamespaceSelectFilter />}
<PageFiltersSelect allowEmpty disableFilters={{
[FilterType.NAMESPACE]: true, // namespace-select used instead
}} />
<PageFiltersSelect allowEmpty />
</>
),
search: <SearchInputUrl />,

View File

@ -25,7 +25,6 @@ import { searchUrlParam } from "../input/search-input-url";
export enum FilterType {
SEARCH = "search",
NAMESPACE = "namespace",
}
export interface Filter {