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

tab key not seperating tags

Open jafeerr opened this issue 6 years ago • 1 comments

I have added this module in my react application. when i press tab/enter, tags are not separating. it works like normal text field. should i add any specific css ?

jafeerr avatar Mar 19 '18 07:03 jafeerr

You probably need something like:

    <TagsInput
      addKeys={[9, 13, 32, 188]} // tab enter space comma

mykter avatar Mar 31 '18 12:03 mykter