From c16970f3575d99ed3fc3f8f8ea277b38de72567f Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Thu, 28 Sep 2023 22:13:04 +0700 Subject: [PATCH] Fix attachments in comments popup (#3758) Signed-off-by: Andrey Sobolev --- .../src/components/AttachmentRefInput.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/attachment-resources/src/components/AttachmentRefInput.svelte b/plugins/attachment-resources/src/components/AttachmentRefInput.svelte index 2534583615..a2ff53c831 100644 --- a/plugins/attachment-resources/src/components/AttachmentRefInput.svelte +++ b/plugins/attachment-resources/src/components/AttachmentRefInput.svelte @@ -310,6 +310,7 @@ haveAttachment={attachments.size > 0} withoutTopBorder={attachments.size > 0} on:attach={() => { + dispatch('focus') inputFile.click() }} on:update={onUpdate}