Skip to content

Commit

Permalink
Add storage ID when navigating to a shared parent directory (#7396)
Browse files Browse the repository at this point in the history
  • Loading branch information
JammingBen authored Aug 3, 2022
1 parent 301b990 commit e3661fa
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Bugfix: Add storage ID when navigating to a shared parent directory

We've added the missing storage ID when navigating to a shared parent directory.

https://github.com/owncloud/web/pull/7396
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export default defineComponent({
}
return createLocationSpaces('files-spaces-personal', {
params: { item: unref(sharedParentDir) }
params: { storageId: unref(currentStorageId), item: unref(sharedParentDir) }
})
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ export default {
}
return createLocationSpaces('files-spaces-personal', {
params: { item: parentShare.path }
params: { storageId: this.currentStorageId, item: parentShare.path }
})
}
Expand Down

0 comments on commit e3661fa

Please sign in to comment.