Closed wjbp6eqc closed 5 months ago
Use multiple class names in Tags component's property className cause an error. Example: className="form-control d-flex"
className="form-control d-flex"
What is the expected behavior? You probably should parse the string and call toggleClass multiple times.
What is happening instead? toggleClass accepts only one class at once. https://github.com/yairEO/tagify/blob/master/src/react.tagify.jsx#L162
What error message are you getting? DOMTokenList.toggle: The token can not contain whitespace.
Prerequisites
Explanation
Use multiple class names in Tags component's property className cause an error. Example:
className="form-control d-flex"
What is the expected behavior? You probably should parse the string and call toggleClass multiple times.
What is happening instead? toggleClass accepts only one class at once. https://github.com/yairEO/tagify/blob/master/src/react.tagify.jsx#L162
What error message are you getting? DOMTokenList.toggle: The token can not contain whitespace.