Search code examples
reactjsrich-text-editorreact-quill

Cursor Changes to ReqctQuill Editor


I have another input boxn, now whenever I add text to that input, it automatically changes the cursor to focus on ReactQuill Editor.

Check the code here.


Solution

  • Please paste this into your editor.js.And Remove this <div className="textarea"></div>.
    
    <ReactQuill
        theme="snow"
        onChange={handleChange}
        value={editorHtml}
        modules={modules}
        ref={quillRef}
        formats={formats}
        placeholder="Write Something"
      />