You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Patch Changes
94bd4c8: Fix invalid TextSelection on blur. Clearing the selection on blur used TextSelection.create(doc, 0), which resolves to the doc node (no inline content) and made ProseMirror log "TextSelection endpoint not pointing into a node with inline content (doc)". It now uses Selection.atStart(doc), which resolves to the first valid cursor position.