Skip to content

Commit

Permalink
Add dav to path to right sidebar webdav url (#10576)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexAndBear authored Mar 11, 2024
1 parent b51b4b9 commit bb7e314
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Bugfix: WebDav Url in right sidebar is missing dav in path

We fixed a bug where the '/dav/' path was missing in the WebDav Url in the right sidebar.

https://github.com/owncloud/web/pull/10576
2 changes: 1 addition & 1 deletion packages/web-pkg/src/components/SideBar/WebDavDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default defineComponent({
const copyWebDAVUrlIcon = ref(copyIcon)
const webDavUrl = computed(() => {
return urlJoin(configurationManager.serverUrl, unref(resource).webDavPath)
return urlJoin(configurationManager.serverUrl, 'dav', unref(resource).webDavPath)
})
const copyWebDAVPathToClipboard = () => {
Expand Down

0 comments on commit bb7e314

Please sign in to comment.