olahol / react-tagsinput

Highly customizable React component for inputing tags.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

add option to prevent tags duplications

idangozlan opened this issue · comments

right now, if user enter the same tags twice or more, it's not preventing from him do that, we should have an option to prevent duplications :)

@idangozlan there is already a prop onlyUnique which if set to true will prevent duplicates.
By default this prop is false hence duplicates are allowed.
https://github.com/olahol/react-tagsinput#onlyunique

Thanks :)