lowercase tag fix part2

This commit is contained in:
Kara Hoagland
2022-12-02 18:31:26 -08:00
parent 793e7891b3
commit 9e20782c07
3 changed files with 9 additions and 9 deletions

View File

@@ -154,7 +154,7 @@ function initFormHandler() {
// If there is a tag, it'll display the tag
if (tagField.value.length > 0) {
let tagSetVal = tagField.value.toLowerCase();
let tagSetVal = tagField.value.toLocaleLowerCase();
if (!tagSet.has(tagSetVal)) {
let tagLabel = document.createElement("label");
tagLabel.innerHTML = tagField.value;