Skip to content

Commit

Permalink
fix: don't overwrite item in redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
kulmann committed Jul 27, 2022
1 parent eb816bd commit add7d7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web-app-files/src/views/Personal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export default defineComponent({
return this.$router.replace({
to,
params: { ...to.params, storageId, item: '/' },
params: { ...to.params, storageId, item: to.params.item || '/' },
query: to.query
})
}
Expand Down

0 comments on commit add7d7c

Please sign in to comment.