소스 검색

fix back button

Nikolay Suslov 4 년 전
부모
커밋
5723e446ad
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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);
      }