Skip to content

Commit

Permalink
Merge pull request #48244 from nextcloud/fix/sharing-entry-link
Browse files Browse the repository at this point in the history
fix(files): Link share URL was not generated due to typo
  • Loading branch information
susnux authored Sep 24, 2024
2 parents 3e72210 + a274495 commit 7406869
Show file tree
Hide file tree
Showing 16 changed files with 378 additions and 377 deletions.
7 changes: 4 additions & 3 deletions apps/files_sharing/src/components/SharingEntryLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@

<!-- clipboard -->
<NcActions v-if="share && (!isEmailShareType || isFileRequest) && share.token" ref="copyButton" class="sharing-entry__copy">
<NcActionButton :title="copyLinkTooltip"
:aria-label="copyLinkTooltip"
<NcActionButton :aria-label="copyLinkTooltip"
:title="copyLinkTooltip"
:href="shareLink"
@click.prevent="copyLink">
<template #icon>
<CheckIcon v-if="copied && copySuccess"
Expand Down Expand Up @@ -509,7 +510,7 @@ export default {
* @return {string}
*/
shareLink() {
return generateUrl('/s/{toen}', { token: this.share.token }, { baseURL: getBaseUrl() })
return generateUrl('/s/{token}', { token: this.share.token }, { baseURL: getBaseUrl() })
},

/**
Expand Down
2 changes: 0 additions & 2 deletions dist/323-323.js

This file was deleted.

354 changes: 0 additions & 354 deletions dist/323-323.js.license

This file was deleted.

1 change: 0 additions & 1 deletion dist/323-323.js.map

This file was deleted.

1 change: 0 additions & 1 deletion dist/323-323.js.map.license

This file was deleted.

Loading

0 comments on commit 7406869

Please sign in to comment.