Stop the back function removing the claim_id from the URI

This commit is contained in:
6ea86b96 2017-08-07 20:07:39 +07:00
parent f395d7153a
commit 7572c9a051
No known key found for this signature in database
GPG key ID: B282D183E4931E8F

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);