🐛(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:
Anthony LC
2025-08-01 09:44:19 +02:00
parent e26c3dff35
commit 63efe40a7b

View File

@@ -55,6 +55,7 @@ const LinkSelected = ({ url, title }: LinkSelectedProps) => {
return (
<StyledLink
href={url}
draggable="false"
$css={css`
display: inline;
padding: 0.1rem 0.4rem;