SSR-586 Merge from develop
This commit is contained in:
parent
be7054a666
commit
6dba70c156
1 changed files with 2 additions and 2 deletions
|
|
@ -122,7 +122,7 @@ const router = createRouter({
|
|||
}
|
||||
});
|
||||
|
||||
router.beforeEach(async (to, from, next) => {
|
||||
router.beforeEach(async (to, from) => {
|
||||
const fromQueryPage = from.query?.issPage;
|
||||
if (fromQueryPage === undefined) {
|
||||
showIssLoadingModal(true);
|
||||
|
|
@ -135,7 +135,7 @@ router.beforeEach(async (to, from, next) => {
|
|||
return false;
|
||||
}
|
||||
|
||||
next();
|
||||
return true;
|
||||
});
|
||||
|
||||
router.afterEach(async (to, from) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue