Skip to content

Commit

Permalink
fix: add item param to personal space redirect
Browse files Browse the repository at this point in the history
If the item is missing there's a warning in the browser console about
item not matching the required format.
  • Loading branch information
kulmann committed Jul 27, 2022
1 parent 34fc8ab commit eb816bd
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 },
params: { ...to.params, storageId, item: '/' },
query: to.query
})
}
Expand Down

0 comments on commit eb816bd

Please sign in to comment.