Corrected Any to All

This commit is contained in:
Peter Edmond 2025-06-18 13:30:22 +01:00
parent 8ed3296e0d
commit aef4eaae92

View File

@ -31,7 +31,7 @@ function insertQualifiers(){
document.querySelector('label[for="location"]').textContent = parsed["1"][0]; document.querySelector('label[for="location"]').textContent = parsed["1"][0];
// .shift(); // // .shift(); //
parsed["1"][0] = "Any"; parsed["1"][0] = "All";
select = document.getElementById('location'); select = document.getElementById('location');
optionCount = select.options.length; optionCount = select.options.length;
if (optionCount > 1) {return;} if (optionCount > 1) {return;}