diff --git a/changelog/unreleased/bugfix-file-name-in-text-editor b/changelog/unreleased/bugfix-file-name-in-text-editor index aabf3356848..f2e0748ad47 100644 --- a/changelog/unreleased/bugfix-file-name-in-text-editor +++ b/changelog/unreleased/bugfix-file-name-in-text-editor @@ -4,3 +4,4 @@ We've fixed a bug in the text editor where the UUID of a shared resource was bei https://github.com/owncloud/web/pull/7516 https://github.com/owncloud/web/issues/7292 +https://github.com/owncloud/web/pull/7518 diff --git a/packages/web-app-files/src/components/SideBar/SideBar.vue b/packages/web-app-files/src/components/SideBar/SideBar.vue index 8d861108a54..ca7859a6442 100644 --- a/packages/web-app-files/src/components/SideBar/SideBar.vue +++ b/packages/web-app-files/src/components/SideBar/SideBar.vue @@ -234,14 +234,6 @@ export default defineComponent({ this.highlightedFile.webDavPath, DavProperties.Default ) - if ( - this.hasShareJail && - (isLocationSharesActive(this.$router, 'files-shares-with-me') || - (isLocationSpacesActive(this.$router, 'files-spaces-share') && - this.highlightedFile.path === '/')) - ) { - item.name = this.highlightedFile.name - } } this.selectedFile = buildResource(item) diff --git a/packages/web-pkg/src/helpers/preview/privatePreviewBlob.ts b/packages/web-pkg/src/helpers/preview/privatePreviewBlob.ts index 9baf95a22c4..000ffe8f32c 100644 --- a/packages/web-pkg/src/helpers/preview/privatePreviewBlob.ts +++ b/packages/web-pkg/src/helpers/preview/privatePreviewBlob.ts @@ -9,7 +9,6 @@ interface PrivatePreviewBlobOptions { userId: string resource: { id: string - path: string webDavPath: string etag?: string }