Kaustubh Karkare
Kaustubh Karkare
I was facing the same issue, and none of the above options worked out for me, so this is what I did: ``` function fixCursorBug(prevEditorState, nextEditorState) { const prevSelection =...
I used it in my onChange method given as a prop to the `` component: ``` onChange(nextEditorState) { nextEditorState = fixCursorBug(this.props.editorState, nextEditorState); this.props.onChange(nextEditorState); } ``` or ``` onChange(nextEditorState) { nextEditorState...
Hi Jason! Would you be able to provide the exact error message? Perhaps you have a stack trace when the timeout happened, in your apache logs. While it would be...