react-markdown-editor
react-markdown-editor copied to clipboard
Setting tabIndex on MarkdownEditor doesn't work
setting tabIndex attribute / prop on Markdown editor component like this:
<MarkdownEditor
value={value}
tabIndex="0"
onChange={onChange}
/>
it doesn't set it when rendered inside the app. Setting tabIndex manually in devtools makes it work as expected
@TvrtkoM https://discuss.codemirror.net/t/is-there-a-way-to-configure-the-tabindex-of-the-textbox-without-hacking-the-source/5111/2
@TvrtkoM The editor component is encapsulated based on CodeMirror, which may be helpful to you.