Stop the back function removing the claim_id from the URI #448

Merged
6ea86b96 merged 1 commit from fix-back-removing-claimid into master 2017-08-07 22:42:26 +02:00

View file

@ -34,7 +34,7 @@ window.addEventListener("popstate", (event, param) => {
let action;
if (hash !== "") {
const url = hash.split("#")[1];
const url = hash.replace(/^#/, "");
const { params, scrollY } = event.state || {};
const queryString = toQueryString(params);