Skip to content

Commit 375fd9b

Browse files
fix: has and search were flipped, causing strange urls/locations
1 parent 805b8e9 commit 375fd9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solara/widgets/vue/navigator.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ modules.export = {
7575
},
7676
makeFullRelativeUrl() {
7777
const url = new URL(this.location, window.location.origin + solara.rootPath);
78-
return url.pathname + this.hash + url.search;
78+
return url.pathname + url.search + this.hash;
7979
},
8080
navigateToHash(hash) {
8181
const targetEl = document.getElementById(hash.slice(1));

0 commit comments

Comments
 (0)