🐛(frontend) fix interlinking click with Firefox
Fixed Firefox requiring double-click on interlinks by adding draggable="false" to prevent drag detection conflicts in contenteditable areas.
This commit is contained in:
@@ -55,6 +55,7 @@ const LinkSelected = ({ url, title }: LinkSelectedProps) => {
|
|||||||
return (
|
return (
|
||||||
<StyledLink
|
<StyledLink
|
||||||
href={url}
|
href={url}
|
||||||
|
draggable="false"
|
||||||
$css={css`
|
$css={css`
|
||||||
display: inline;
|
display: inline;
|
||||||
padding: 0.1rem 0.4rem;
|
padding: 0.1rem 0.4rem;
|
||||||
|
|||||||
Reference in New Issue
Block a user