diff --git a/insertQualifiers.js b/insertQualifiers.js index 05ba8a5..e5eeaf9 100644 --- a/insertQualifiers.js +++ b/insertQualifiers.js @@ -47,7 +47,7 @@ function insertQualifiers(){ document.querySelector('label[for="level"]').textContent = parsed["2"][0]; // .shift(); // - parsed["2"][0] = "Any"; + parsed["2"][0] = "All"; select = document.getElementById('level'); optionCount = select.options.length; if (optionCount > 1) {return;} @@ -61,7 +61,7 @@ function insertQualifiers(){ }); document.querySelector('label[for="gov"]').textContent = parsed["3"][0]; - parsed["3"][0] = "Any"; + parsed["3"][0] = "All"; select = document.getElementById('gov'); optionCount = select.options.length; if (optionCount > 1) {return;}