Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/web-app-files/src/views/spaces/GenericSpace.vue
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ const breadcrumbs = computed(() => {
if (isProjectSpaceResource(unref(space))) {
rootBreadcrumbItems.push({
id: uuidV4(),
text: $gettext('Spaces'),
text: unref(route).params.scope === 'vault' ? $gettext('Vault') : $gettext('Drive'),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Has this been clarified whether we really need to include the Drive? Most instances will be deployed without vault and in such case this feels like unnecessary string.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We will need to check with David/Julian.

to: createLocationSpaces('files-spaces-projects'),
isStaticNav: true
})
Expand Down
2 changes: 1 addition & 1 deletion packages/web-app-files/src/views/spaces/Projects.vue
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ const spacesHelpList = computed(() => {
const breadcrumbs = computed(() => {
return [
{
text: $gettext('Spaces'),
text: unref(route).params.scope === 'vault' ? $gettext('Vault') : $gettext('Drive'),
onClick: () => loadResourcesTask.perform(),
isStativNav: true
}
Expand Down