Prevent opening card dialog when link for URL is clicked. (#1037)
Co-authored-by: Jesús Espino <jespinog@gmail.com>
This commit is contained in:
parent
b5d58060cf
commit
2520d2fa4b
1 changed files with 1 additions and 0 deletions
|
@ -25,6 +25,7 @@ const URLProperty = (props: Props): JSX.Element => {
|
||||||
href={Utils.ensureProtocol(props.value.trim())}
|
href={Utils.ensureProtocol(props.value.trim())}
|
||||||
target='_blank'
|
target='_blank'
|
||||||
rel='noreferrer'
|
rel='noreferrer'
|
||||||
|
onClick={(event) => event.stopPropagation()}
|
||||||
>
|
>
|
||||||
<LinkIcon/>
|
<LinkIcon/>
|
||||||
</a>
|
</a>
|
||||||
|
|
Loading…
Reference in a new issue