SSR-586 Merge from develop

This commit is contained in:
Josh Dassinger 2024-01-09 14:22:58 -06:00
parent be7054a666
commit 6dba70c156

View file

@ -122,7 +122,7 @@ const router = createRouter({
} }
}); });
router.beforeEach(async (to, from, next) => { router.beforeEach(async (to, from) => {
const fromQueryPage = from.query?.issPage; const fromQueryPage = from.query?.issPage;
if (fromQueryPage === undefined) { if (fromQueryPage === undefined) {
showIssLoadingModal(true); showIssLoadingModal(true);
@ -135,7 +135,7 @@ router.beforeEach(async (to, from, next) => {
return false; return false;
} }
next(); return true;
}); });
router.afterEach(async (to, from) => { router.afterEach(async (to, from) => {