From f956d51658280b5af95ab74ed379f45488e273a2 Mon Sep 17 00:00:00 2001 From: skjnldsv Date: Tue, 16 Jul 2024 18:17:37 +0200 Subject: [PATCH] fix(files_sharing): file request add email on focusout Signed-off-by: skjnldsv --- .../NewFileRequestDialog/NewFileRequestDialogFinish.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogFinish.vue b/apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogFinish.vue index 243ae9a584c..93997671543 100644 --- a/apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogFinish.vue +++ b/apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogFinish.vue @@ -7,7 +7,7 @@
- {{ t('files_sharing', 'Once created, you can share the link below to allow people to upload files to your directory.') }} + {{ t('files_sharing', 'You can now share the link below to allow people to upload files to your directory.') }} @@ -32,7 +32,8 @@ :placeholder="t('files_sharing', 'Enter an email address or paste a list')" type="email" @keypress.enter.stop="addNewEmail" - @paste.stop.prevent="onPasteEmails" /> + @paste.stop.prevent="onPasteEmails" + @focusout.native="addNewEmail" />