react-tagsinput icon indicating copy to clipboard operation
react-tagsinput copied to clipboard

Tag creation does not work on mobile

Open NenadKaevik opened this issue 5 years ago • 1 comments

I have implemented this tags input but when using it on chrome mobile it does not create tags on space. You have to blur the input to create the tag and then focus again to type new one.

NenadKaevik avatar Jan 14 '21 09:01 NenadKaevik

#201 Here is a solution for the problem. Wrap the component with the form-tag:

<form>
<TagsInput />
</form>

Neihed avatar Mar 19 '21 18:03 Neihed