Fixed missing tag filter breaking stash page.
This commit is contained in:
parent
ccca539867
commit
4e6db6bd4f
|
@ -13,6 +13,7 @@ export async function onBeforeRender(pageContext) {
|
||||||
...pageContext.urlQuery,
|
...pageContext.urlQuery,
|
||||||
scope: pageContext.routeParams.scope || 'latest',
|
scope: pageContext.routeParams.scope || 'latest',
|
||||||
stashId: stash.id,
|
stashId: stash.id,
|
||||||
|
tagFilter: pageContext.tagFilter,
|
||||||
}), {
|
}), {
|
||||||
page: Number(pageContext.routeParams.page) || 1,
|
page: Number(pageContext.routeParams.page) || 1,
|
||||||
limit: Number(pageContext.urlParsed.search.limit) || 50,
|
limit: Number(pageContext.urlParsed.search.limit) || 50,
|
||||||
|
|
|
@ -13,6 +13,7 @@ export async function onBeforeRender(pageContext) {
|
||||||
...pageContext.urlQuery,
|
...pageContext.urlQuery,
|
||||||
scope: pageContext.routeParams.scope || 'stashed',
|
scope: pageContext.routeParams.scope || 'stashed',
|
||||||
stashId: stash.id,
|
stashId: stash.id,
|
||||||
|
tagFilter: pageContext.tagFilter,
|
||||||
}), {
|
}), {
|
||||||
page: Number(pageContext.routeParams.page) || 1,
|
page: Number(pageContext.routeParams.page) || 1,
|
||||||
limit: Number(pageContext.urlParsed.search.limit) || 30,
|
limit: Number(pageContext.urlParsed.search.limit) || 30,
|
||||||
|
|
Loading…
Reference in New Issue