Allowing actor tag filter on stash page.
This commit is contained in:
@@ -146,7 +146,6 @@ const { pageProps } = inject('pageContext');
|
|||||||
const {
|
const {
|
||||||
tag: pageTag,
|
tag: pageTag,
|
||||||
actor: pageActor,
|
actor: pageActor,
|
||||||
stash: pageStash,
|
|
||||||
} = pageProps;
|
} = pageProps;
|
||||||
|
|
||||||
const search = ref('');
|
const search = ref('');
|
||||||
@@ -177,7 +176,7 @@ const priorityTags = [
|
|||||||
'lesbian',
|
'lesbian',
|
||||||
];
|
];
|
||||||
|
|
||||||
const isActorTagsAvailable = computed(() => props.actorTags && (props.filters.actors.length > 0 || pageActor) && !pageStash);
|
const isActorTagsAvailable = computed(() => props.actorTags && (props.filters.actors.length > 0 || pageActor));
|
||||||
|
|
||||||
const groupedTags = computed(() => {
|
const groupedTags = computed(() => {
|
||||||
// can't show actor tags inside stash, because both require a join, and manticore currently only supports one
|
// can't show actor tags inside stash, because both require a join, and manticore currently only supports one
|
||||||
|
|||||||
Reference in New Issue
Block a user