diff --git a/changelog/unreleased/bugfix-add-root-breadcrumb-to-shared-with-me-page b/changelog/unreleased/bugfix-add-root-breadcrumb-to-shared-with-me-page new file mode 100644 index 00000000000..a058e5f777f --- /dev/null +++ b/changelog/unreleased/bugfix-add-root-breadcrumb-to-shared-with-me-page @@ -0,0 +1,4 @@ +Bugfix: We added the shares item to the breadcrumbs at the shared with me page + +https://github.com/owncloud/web/pull/6965 +https://github.com/owncloud/web/issues/6937 diff --git a/packages/web-app-files/src/views/shares/SharedResource.vue b/packages/web-app-files/src/views/shares/SharedResource.vue index 66fb4a5d6d1..b872dd5fea2 100644 --- a/packages/web-app-files/src/views/shares/SharedResource.vue +++ b/packages/web-app-files/src/views/shares/SharedResource.vue @@ -169,6 +169,10 @@ export default defineComponent({ breadcrumbs() { return concatBreadcrumbs( + { + text: this.$gettext('Shares'), + to: { path: '/files/shares' } + }, { text: this.$gettext('Shared with me'), to: { path: '/files/shares/with-me' }