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 does not render new line with "\n" in text. let say text is "Hi this is a\n test text". Then this should be rendered like:
$ Hi this is a
$ test text
but it is rendering:
$ Hi this is atest text
The text was updated successfully, but these errors were encountered:
The library is built using <input> for input, which will never render multiline. You either need to change the source code to generate a <textarea> or use some DOM replacement to swap out <input> with a <textarea>. I did the latter and the classes still work.
I would suggest the author add a multiline prop which generates a textarea instead of input
It does not render new line with "\n" in text. let say text is "Hi this is a\n test text". Then this should be rendered like:
$ Hi this is a
$ test text
but it is rendering:
$ Hi this is atest text
The text was updated successfully, but these errors were encountered: