Skip to content

Commit

Permalink
avoid redundant navigation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nucleogenesis committed Nov 14, 2024
1 parent 0d36c6e commit 77af83c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@
if (sectionIndex !== this.activeSectionIndex) {
this.$router.push({
...this.$route,
params: { ...this.getCurrentRouteParams(), sectionIndex },
params: { ...this.$route.params, ...this.getCurrentRouteParams(), sectionIndex },
});
}
},
Expand Down

0 comments on commit 77af83c

Please sign in to comment.