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
It may be due to browser (latest Chrome) or React version (17), but I THINK it's because the sample in the README is broken.
When your cursor is after the last character and you press enter, nothing happens. The second time you press enter it adds an enter to the top of the area, not really the intention of anyone I think.
In the Codesandbox everything works fine. When comparing I found that the example in the README only adds a line when not at the end of the array, while the Codepen always adds one.
For me at least it appears the README example is fixed when always adding a \n. I know how sensitive these things can be with all browsers, so wanted to verify this is a mistake in the README and not done intentional to prevent other quirks.
Also it seems quite often Chrome loses focus after first getting focus for the first time and typing one character. I can think of some ugly workarounds, but perhaps also something I'm missing, since Codepen code is again not exhibiting this quirk.
Code used as good as a copy paste from README.
EDIT: Just confirmed that the Codesandbox is also broken when replacing it with the code from the README, e.g. "\n" to {i < tokens.length - 1 ? '\n' : null}
The text was updated successfully, but these errors were encountered:
Lovely approach, thanks a lot!
It may be due to browser (latest Chrome) or React version (17), but I THINK it's because the sample in the README is broken.
When your cursor is after the last character and you press enter, nothing happens. The second time you press enter it adds an enter to the top of the area, not really the intention of anyone I think.
In the Codesandbox everything works fine. When comparing I found that the example in the README only adds a line when not at the end of the array, while the Codepen always adds one.
README:
{ i < arr.length - 1 ? '\n' : null }
Codesandbox:
{ "\n" }
For me at least it appears the README example is fixed when always adding a
\n
. I know how sensitive these things can be with all browsers, so wanted to verify this is a mistake in the README and not done intentional to prevent other quirks.Also it seems quite often Chrome loses focus after first getting focus for the first time and typing one character. I can think of some ugly workarounds, but perhaps also something I'm missing, since Codepen code is again not exhibiting this quirk.
Code used as good as a copy paste from README.
EDIT: Just confirmed that the Codesandbox is also broken when replacing it with the code from the README, e.g.
"\n"
to{i < tokens.length - 1 ? '\n' : null}
The text was updated successfully, but these errors were encountered: