diff --git a/src/ui/component/tagsSearch/view.jsx b/src/ui/component/tagsSearch/view.jsx index 7cf049601..5b8c45186 100644 --- a/src/ui/component/tagsSearch/view.jsx +++ b/src/ui/component/tagsSearch/view.jsx @@ -62,7 +62,7 @@ export default function TagsSearch(props: Props) { setNewTag(''); - tags = tags.split(',').map(newTag => newTag.trim()); + tags = tags.split(',').map(newTag => newTag.trim().toLowerCase()); tags.forEach(tag => { if (onSelect) { onSelect({ name: tag });