diff --git a/changelog/unreleased/bugfix-resolve-private-link b/changelog/unreleased/bugfix-resolve-private-link new file mode 100644 index 00000000000..354867ca907 --- /dev/null +++ b/changelog/unreleased/bugfix-resolve-private-link @@ -0,0 +1,5 @@ +Bugfix: Resolve private links + +Private links didn't resolve correctly anymore because the internal file path handling was changed in our api client (owncloud-sdk). We've adjusted it accordingly so that private links now resolve correctly again. + +https://github.com/owncloud/web/pull/5654 diff --git a/changelog/unreleased/enhancement-private-link-routing b/changelog/unreleased/enhancement-private-link-routing new file mode 100644 index 00000000000..45c15e4cad4 --- /dev/null +++ b/changelog/unreleased/enhancement-private-link-routing @@ -0,0 +1,6 @@ +Enhancement: Resolve private links into folders instead of parent + +Private links always resolved into the parent folder of the linked file and visually highlighted the file or folder from the link. We've changed this behaviour to directly navigate into the folder in case the linked resource is a folder and only keep the previous behaviour for when the linked resource is a file. + +https://github.com/owncloud/web/issues/5533 +https://github.com/owncloud/web/pull/5654 diff --git a/packages/web-app-files/src/views/PrivateLink.vue b/packages/web-app-files/src/views/PrivateLink.vue index 0b33d7d7064..0481810f532 100644 --- a/packages/web-app-files/src/views/PrivateLink.vue +++ b/packages/web-app-files/src/views/PrivateLink.vue @@ -32,8 +32,11 @@