Skip to content

Commit 96464b0

Browse files
committed
fix browser history navigation with query params
1 parent 1c08179 commit 96464b0

File tree

1 file changed

+1
-1
lines changed
  • app/concepts/matestack/ui/core/app

1 file changed

+1
-1
lines changed

app/concepts/matestack/ui/core/app/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const componentDef = {
2222
pathName: self.currentPathName,
2323
search: self.currentSearch
2424
}, document.location)){
25-
self.$store.dispatch("navigateTo", {url: document.location.pathname, backwards: true} );
25+
self.$store.dispatch("navigateTo", {url: document.location.pathname + document.location.search, backwards: true} );
2626
}
2727
})
2828
},

0 commit comments

Comments
 (0)