Allowing actor tag filter on stash page.
This commit is contained in:
@@ -146,7 +146,6 @@ const { pageProps } = inject('pageContext');
|
||||
const {
|
||||
tag: pageTag,
|
||||
actor: pageActor,
|
||||
stash: pageStash,
|
||||
} = pageProps;
|
||||
|
||||
const search = ref('');
|
||||
@@ -177,7 +176,7 @@ const priorityTags = [
|
||||
'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(() => {
|
||||
// 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