]> Untitled Git - lemmy-ui.git/commitdiff
Fix url link selection placement. Fixes #155
authorDessalines <tyhou13@gmx.com>
Tue, 2 Feb 2021 16:45:38 +0000 (11:45 -0500)
committerDessalines <tyhou13@gmx.com>
Tue, 2 Feb 2021 16:45:38 +0000 (11:45 -0500)
src/shared/components/markdown-textarea.tsx

index 21af02cb5729f29112490624ea4b423a8a9e8355..ded6dd1c11715e987bfd5e8d341052a64f679268 100644 (file)
@@ -422,11 +422,11 @@ export class MarkdownTextArea extends Component<
         start
       )}[${selectedText}]()${i.state.content.substring(end)}`;
       textarea.focus();
-      setTimeout(() => (textarea.selectionEnd = end + 5), 10);
+      setTimeout(() => (textarea.selectionEnd = end + 3), 10);
     } else {
       i.state.content += '[]()';
       textarea.focus();
-      setTimeout(() => (textarea.selectionEnd -= 0), 10);
+      setTimeout(() => (textarea.selectionEnd -= 1), 10);
     }
     i.setState(i.state);
   }