UBER-1091: Fix attach button (#3854)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev 2023-10-18 18:28:59 +07:00 committed by GitHub
parent 92226819ce
commit 343d72af0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
{ "major": 0, "minor": 6, "patch": 130 }
{"major":0,"minor":6,"patch":144}

View File

@ -164,7 +164,7 @@
icon={IconAttachment}
size={'large'}
on:click={() => {
descriptionBox.attach()
descriptionBox.handleAttach()
}}
/>
</svelte:fragment>

View File

@ -327,7 +327,7 @@
icon={IconAttachment}
size={'large'}
on:click={() => {
descriptionBox.attach()
descriptionBox.handleAttach()
}}
/>
</svelte:fragment>

View File

@ -871,7 +871,7 @@
size={'large'}
kind={'ghost'}
on:click={() => {
descriptionBox.attach()
descriptionBox.handleAttach()
}}
/>
{#if targetSettings?.footerComponent && currentProject}