Skip to content

Commit 1755736

Browse files
committed
fix(router): use hash from url only when view id is detected
1 parent f3bf387 commit 1755736

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/router.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ function getEntryFromURL(url) {
624624
let config;
625625

626626
const [pathname, search] = url.hash.split("?");
627-
if (pathname) {
627+
if (pathname && pathname.match(/^#@.+-.+/)) {
628628
config = getConfigById(pathname.split("@")[1]);
629629
url = new URL(`?${search}`, window.location.origin);
630630
}

0 commit comments

Comments
 (0)