Stop click propagation on attachment links in tables
This commit is contained in:
parent
5e14479a8e
commit
6fd181418a
|
@ -20,6 +20,9 @@
|
||||||
target="_blank"
|
target="_blank"
|
||||||
download={attachment.name}
|
download={attachment.name}
|
||||||
href={attachment.url}
|
href={attachment.url}
|
||||||
|
on:click={e => {
|
||||||
|
e.stopPropagation()
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
<div class="center" title={attachment.name}>
|
<div class="center" title={attachment.name}>
|
||||||
<img src={attachment.url} alt={attachment.extension} />
|
<img src={attachment.url} alt={attachment.extension} />
|
||||||
|
@ -32,6 +35,9 @@
|
||||||
target="_blank"
|
target="_blank"
|
||||||
download={attachment.name}
|
download={attachment.name}
|
||||||
href={attachment.url}
|
href={attachment.url}
|
||||||
|
on:click={e => {
|
||||||
|
e.stopPropagation()
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
{attachment.extension}
|
{attachment.extension}
|
||||||
</Link>
|
</Link>
|
||||||
|
|
Loading…
Reference in New Issue