Skip to content

Commit

Permalink
Merge pull request #4975 from owncloud/fix-breadcrumbs-routing
Browse files Browse the repository at this point in the history
Adapt breadcrumbs baseUrl according to recent route changes
  • Loading branch information
kulmann authored Apr 16, 2021
2 parents ac78acb + 4bddae3 commit 6389d60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ A lot of random changes:
- Updated ODS to v5.1.0

https://github.com/owncloud/web/pull/4965
https://github.com/owncloud/web/pull/4975
2 changes: 1 addition & 1 deletion packages/web-app-files/src/components/AppBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export default {
let baseUrl
const pathItems = []
if (this.isPersonalRoute) {
baseUrl = '/files/list/personal/'
baseUrl = '/files/list/all/'
pathItems.push('/') // as of now we need to add the url encoded root path `/`, otherwise we'll land in the configured homeFolder
breadcrumbs.push({
text: this.$gettext('Home'),
Expand Down

0 comments on commit 6389d60

Please sign in to comment.