uiwjs / react-md-editor

A simple markdown editor with preview, implemented with React.js and TypeScript.
https://uiwjs.github.io/react-md-editor
MIT License
2.04k stars 149 forks source link

v3.25.3 Getting ref to textarea stopped working #590

Closed RARgames closed 8 months ago

RARgames commented 8 months ago

After the update from v3.24.1 to 3.25.3 getting ref to textarea stopped working.

This was working, but stopped.

<MDEditor
  ref={(node) => {
    if (node && node.textarea) {
      textareaRef.current = node.textarea;
    }
  }}
/>
jaywcjlove commented 8 months ago
image

I didn't understand what the problem was. Is this an issue with #591 ? @RARgames

RARgames commented 8 months ago

Yes, I thought at the 1st look that these are 2 separate issues. v3.25.4 fixed the example and ref issue. Thanks!