diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2024-07-16 20:39:28 +0200 |
---|---|---|
committer | skjnldsv <skjnldsv@protonmail.com> | 2024-07-18 19:47:11 +0200 |
commit | 43ca07809d7d95f4896e9b1839c02d1344b51f83 (patch) | |
tree | c58f74d2da571b12273e321a6e24ae38d8b7d21b /apps/files_sharing/src | |
parent | fec615c140b9b1fdb3cced43ca53a60a6118f250 (diff) | |
download | nextcloud-server-43ca07809d7d95f4896e9b1839c02d1344b51f83.tar.gz nextcloud-server-43ca07809d7d95f4896e9b1839c02d1344b51f83.zip |
fix(files_sharing): file request creation permissions and link copy display
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/src')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue index 7fad50ebc95..ad3f4033b28 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -25,8 +25,8 @@ </div> <!-- clipboard --> - <NcActions v-if="share && !isEmailShareType && share.token" ref="copyButton" class="sharing-entry__copy"> - <NcActionButton :title="copyLinkTooltip" + <NcActions v-if="share && (!isEmailShareType || isFileRequest) && share.token" ref="copyButton" class="sharing-entry__copy"> + <NcActionButton :title="copyLinkTooltip" :aria-label="copyLinkTooltip" @click.prevent="copyLink"> <template #icon> |