]> BookStack Code Mirror - bookstack/blobdiff - resources/js/wysiwyg/services/auto-links.ts
Themes: Documented public file serving
[bookstack] / resources / js / wysiwyg / services / auto-links.ts
index 44a78ec8577c819c021f69d1e93bf0197921127c..1c3b1c73010c750f121ca0e81c05ce6c9965d198 100644 (file)
@@ -27,7 +27,7 @@ function handlePotentialLinkEvent(node: TextNode, selection: BaseSelection, edit
         return;
     }
 
-    const cursorPoint = selectionRange[0].offset - 1;
+    const cursorPoint = selectionRange[0].offset;
     const nodeText = node.getTextContent();
     const rTrimText = nodeText.slice(0, cursorPoint);
     const priorSpaceIndex = rTrimText.lastIndexOf(' ');