diff options
author | julia.kirschenheuter <julia.kirschenheuter@nextcloud.com> | 2023-11-17 16:45:22 +0100 |
---|---|---|
committer | Grigorii K. Shartsev <me@shgk.me> | 2023-11-17 16:55:05 +0100 |
commit | ff2ef8d0d64d62cd2d727059fadd88e513fe576a (patch) | |
tree | 162b7343866aa7abe44d2a8d1216e82ccd0b9a76 /apps/files_sharing/src/components/SharingEntryLink.vue | |
parent | 8c24a32fda99715fdcb4020eb6f0231d13eb6e79 (diff) | |
download | nextcloud-server-ff2ef8d0d64d62cd2d727059fadd88e513fe576a.tar.gz nextcloud-server-ff2ef8d0d64d62cd2d727059fadd88e513fe576a.zip |
Replace ActionLink with ActionButton on sharing tab
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
So-authored-by: Grigorii K. Shartsev <me@shgk.me>
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntryLink.vue')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue index 3247b989f67..77caaee0154 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -43,12 +43,10 @@ <!-- clipboard --> <NcActions v-if="share && !isEmailShareType && share.token" ref="copyButton" class="sharing-entry__copy"> - <NcActionLink :href="shareLink" - target="_blank" - :title="copyLinkTooltip" + <NcActionButton :title="copyLinkTooltip" :aria-label="copyLinkTooltip" :icon="copied && copySuccess ? 'icon-checkmark-color' : 'icon-clippy'" - @click.stop.prevent="copyLink" /> + @click.prevent="copyLink" /> </NcActions> </div> |