mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-23 11:31:57 +03:00
UBER-796: fixed AttachmentActions (#3709)
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
parent
fe3ef83a72
commit
50660dfecc
@ -25,6 +25,8 @@
|
|||||||
export let attachment: Attachment
|
export let attachment: Attachment
|
||||||
export let isSaved = false
|
export let isSaved = false
|
||||||
|
|
||||||
|
let download: HTMLAnchorElement
|
||||||
|
|
||||||
$: saveAttachmentAction = isSaved
|
$: saveAttachmentAction = isSaved
|
||||||
? ({
|
? ({
|
||||||
label: attachmentPlugin.string.RemoveAttachmentFromSaved,
|
label: attachmentPlugin.string.RemoveAttachmentFromSaved,
|
||||||
@ -67,9 +69,10 @@
|
|||||||
class="mr-1"
|
class="mr-1"
|
||||||
href={getFileUrl(attachment.file, 'full', attachment.name)}
|
href={getFileUrl(attachment.file, 'full', attachment.name)}
|
||||||
download={attachment.name}
|
download={attachment.name}
|
||||||
|
bind:this={download}
|
||||||
on:click|stopPropagation
|
on:click|stopPropagation
|
||||||
>
|
>
|
||||||
<ActionIcon icon={FileDownload} size={'small'} action={() => {}} />
|
<ActionIcon icon={FileDownload} size={'small'} action={() => download.click()} />
|
||||||
</a>
|
</a>
|
||||||
<ActionIcon icon={IconMoreH} size={'small'} action={showMenu} />
|
<ActionIcon icon={IconMoreH} size={'small'} action={showMenu} />
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user