client/tag_categories: lowercase all color input on tag_categories

This commit is contained in:
ReAnzu 2019-04-08 14:46:05 -05:00 committed by Marcin Kurczewski
parent 93910a1655
commit 8e1e6af232

View file

@ -135,6 +135,7 @@ class TagCategoriesView extends events.EventTarget {
}
_evtColorChange(e, rowNode) {
e.target.value = e.target.value.toLowerCase();
rowNode._tagCategory.color = e.target.value;
}