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 !== "performers" &&
|
||||||
criterion.type !== "studios" &&
|
criterion.type !== "studios" &&
|
||||||
criterion.type !== "tags" &&
|
criterion.type !== "tags" &&
|
||||||
|
criterion.type !== "sceneTags" &&
|
||||||
criterion.type !== "movies"
|
criterion.type !== "movies"
|
||||||
)
|
)
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ type ValidTypes =
|
|||||||
type Option = { value: string; label: string };
|
type Option = { value: string; label: string };
|
||||||
|
|
||||||
interface ITypeProps {
|
interface ITypeProps {
|
||||||
type?: "performers" | "studios" | "tags" | "movies";
|
type?: "performers" | "studios" | "tags" | "sceneTags" | "movies";
|
||||||
}
|
}
|
||||||
interface IFilterProps {
|
interface IFilterProps {
|
||||||
ids?: string[];
|
ids?: string[];
|
||||||
|
|||||||
Reference in New Issue
Block a user