We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1d543f commit 882546cCopy full SHA for 882546c
src/components/router/appRouter.js
@@ -107,7 +107,7 @@ class AppRouter {
107
const normalizedPath = location.pathname.replace(/^!/, '');
108
const fullPath = normalizedPath + location.search;
109
110
- if (fullPath == this.lastPath) {
+ if (fullPath === this.lastPath) {
111
console.debug('[appRouter] path did not change, resolving promise');
112
this.onViewShow();
113
}
0 commit comments