From b5c7722cb301c16fa1d6a9a4fd04843de388b7f4 Mon Sep 17 00:00:00 2001 From: reece Date: Wed, 23 Oct 2019 13:01:49 +0100 Subject: [PATCH] ammended comment --- src/ui/component/tagsSearch/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/component/tagsSearch/view.jsx b/src/ui/component/tagsSearch/view.jsx index 482ede25b..ff0fce5ad 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(''); - // Split into individual tags, normalize the tags, and remove duplicates with sets. + // Split into individual tags, normalize the tags, and remove duplicates with a set. tags = [...new Set(tags.split(',').map(newTag => newTag.trim().toLowerCase()))]; tags.forEach(tag => { if (onSelect) {