From 343d72af0ff45a2482a26b279ed3d8fbc825c8c5 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Wed, 18 Oct 2023 18:28:59 +0700 Subject: [PATCH] UBER-1091: Fix attach button (#3854) Signed-off-by: Andrey Sobolev --- models/all/src/version.json | 2 +- plugins/hr-resources/src/components/CreateRequest.svelte | 2 +- plugins/recruit-resources/src/components/CreateVacancy.svelte | 2 +- plugins/tracker-resources/src/components/CreateIssue.svelte | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/models/all/src/version.json b/models/all/src/version.json index 8e3356c42e..e903a47f4a 100644 --- a/models/all/src/version.json +++ b/models/all/src/version.json @@ -1 +1 @@ -{ "major": 0, "minor": 6, "patch": 130 } +{"major":0,"minor":6,"patch":144} \ No newline at end of file diff --git a/plugins/hr-resources/src/components/CreateRequest.svelte b/plugins/hr-resources/src/components/CreateRequest.svelte index 30dd75e315..15f20f5113 100644 --- a/plugins/hr-resources/src/components/CreateRequest.svelte +++ b/plugins/hr-resources/src/components/CreateRequest.svelte @@ -164,7 +164,7 @@ icon={IconAttachment} size={'large'} on:click={() => { - descriptionBox.attach() + descriptionBox.handleAttach() }} /> diff --git a/plugins/recruit-resources/src/components/CreateVacancy.svelte b/plugins/recruit-resources/src/components/CreateVacancy.svelte index c596f2ad2e..e8ef56b15a 100644 --- a/plugins/recruit-resources/src/components/CreateVacancy.svelte +++ b/plugins/recruit-resources/src/components/CreateVacancy.svelte @@ -327,7 +327,7 @@ icon={IconAttachment} size={'large'} on:click={() => { - descriptionBox.attach() + descriptionBox.handleAttach() }} /> diff --git a/plugins/tracker-resources/src/components/CreateIssue.svelte b/plugins/tracker-resources/src/components/CreateIssue.svelte index d7d16e19c6..e56ef0c028 100644 --- a/plugins/tracker-resources/src/components/CreateIssue.svelte +++ b/plugins/tracker-resources/src/components/CreateIssue.svelte @@ -871,7 +871,7 @@ size={'large'} kind={'ghost'} on:click={() => { - descriptionBox.attach() + descriptionBox.handleAttach() }} /> {#if targetSettings?.footerComponent && currentProject}