Parcourir la source

fix back button

Nikolay Suslov il y a 4 ans
Parent
commit
5723e446ad
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      public/core/app.js

+ 2 - 1
public/core/app.js

@@ -1416,7 +1416,8 @@ class App {
        let state = {
          path: ctx.pathname + urlAddon
        }
-       window.history.pushState(state, space, window.location.href + urlAddon);
+
+       window.history.replaceState(state, space, window.location.href + urlAddon);
      }