switched to toUpperCase() in lookup

This commit is contained in:
Cappy Popp 2021-01-06 13:44:30 -05:00
parent 0ca82344a3
commit dc2226bcdd

View File

@ -261,7 +261,7 @@
},
country = document.querySelector("#Country");
// sets the value in the form the user can see
country.value = countries[newValue.toLowerCase()];
country.value = countries[newValue.toUpperCase()];
});
/*['email', 'country'].forEach(function(inputField){