diff --git a/ui/v2.5/src/components/List/AddFilter.tsx b/ui/v2.5/src/components/List/AddFilter.tsx index 307261fe6..5ed6f1b37 100644 --- a/ui/v2.5/src/components/List/AddFilter.tsx +++ b/ui/v2.5/src/components/List/AddFilter.tsx @@ -141,6 +141,7 @@ export const AddFilter: React.FC = ( criterion.type !== "performers" && criterion.type !== "studios" && criterion.type !== "tags" && + criterion.type !== "sceneTags" && criterion.type !== "movies" ) return; diff --git a/ui/v2.5/src/components/Shared/Select.tsx b/ui/v2.5/src/components/Shared/Select.tsx index 071bd0482..737705dcc 100644 --- a/ui/v2.5/src/components/Shared/Select.tsx +++ b/ui/v2.5/src/components/Shared/Select.tsx @@ -23,7 +23,7 @@ type ValidTypes = type Option = { value: string; label: string }; interface ITypeProps { - type?: "performers" | "studios" | "tags" | "movies"; + type?: "performers" | "studios" | "tags" | "sceneTags" | "movies"; } interface IFilterProps { ids?: string[];