diff --git a/packages/frontend/src/ui/deck.vue b/packages/frontend/src/ui/deck.vue index 18595d4349..232cf03277 100644 --- a/packages/frontend/src/ui/deck.vue +++ b/packages/frontend/src/ui/deck.vue @@ -133,7 +133,7 @@ mainRouter.navHook = (path, flag): boolean => { if (mainRouter.currentRoute.value.path !== '/') { const noMainColumn = !deckStore.state.columns.some(x => x.type === 'main'); if (deckStore.state.navWindow || noMainColumn) { - os.pageWindow(mainRouter.currentRoute.value.path); + os.pageWindow(location.pathname + location.search + location.hash); mainRouter.replace('/'); } }