mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
Fix sceneTags filter selection (#564)
This commit is contained in:
@@ -141,6 +141,7 @@ export const AddFilter: React.FC<IAddFilterProps> = (
|
||||
criterion.type !== "performers" &&
|
||||
criterion.type !== "studios" &&
|
||||
criterion.type !== "tags" &&
|
||||
criterion.type !== "sceneTags" &&
|
||||
criterion.type !== "movies"
|
||||
)
|
||||
return;
|
||||
|
||||
@@ -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[];
|
||||
|
||||
Reference in New Issue
Block a user