diff options
author | fenn-cs <fenn25.fn@gmail.com> | 2023-12-08 17:21:38 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2024-01-15 09:39:03 +0100 |
commit | 67e3367c48aaa4f2c9aecde1652b38e2340ae185 (patch) | |
tree | 0c12027a4c398883e1b788937a99ea7ae1782c58 /apps | |
parent | b768934478c53bb888f5b93ce3bb733d3912d77f (diff) | |
download | nextcloud-server-67e3367c48aaa4f2c9aecde1652b38e2340ae185.tar.gz nextcloud-server-67e3367c48aaa4f2c9aecde1652b38e2340ae185.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>
Diffstat (limited to 'apps')
-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 d14fc2b6df3..accc349f734 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -56,7 +56,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 }} |