From c179408a0dd8710f7b515179aab3dd9407794b0c Mon Sep 17 00:00:00 2001 From: fenn-cs Date: Fri, 8 Dec 2023 17:21:38 +0100 Subject: [PATCH] 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 --- apps/files_sharing/src/components/SharingEntryLink.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"> {{ errors.pending }} -- 2.39.5