mirror of
https://github.com/cse110-fa22-group29/cse110-fa22-group29.git
synced 2025-09-10 00:27:20 +00:00
lowercase tag fix part2
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user