diff options
author | fenn-cs <fenn25.fn@gmail.com> | 2023-12-08 17:21:38 +0100 |
---|---|---|
committer | fenn-cs <fenn25.fn@gmail.com> | 2024-02-13 22:49:26 +0100 |
commit | 6dddd3e9780d65acc586d010929165e0742e8e07 (patch) | |
tree | 37515fed8359c10b6696826616d88b90e48e3127 | |
parent | 2c6d11d2b9a53b7b70b5036acfe4cdc5e38ac997 (diff) | |
download | nextcloud-server-6dddd3e9780d65acc586d010929165e0742e8e07.tar.gz nextcloud-server-6dddd3e9780d65acc586d010929165e0742e8e07.zip |
Tooltip outside click, should abort share creation
It's unexpected that click outside a tooltip would proceed with the
action that could be carried out inside the tooltip.
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue index 9218d7afe2e..ad4ffa9839f 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -58,7 +58,7 @@ :aria-label="actionsTooltip" menu-align="right" :open.sync="open" - @close="onNewLinkShare"> + @close="onCancel"> <!-- pending data menu --> <NcActionText v-if="errors.pending" icon="icon-error" :class="{ error: errors.pending }"> {{ errors.pending }} |