From aef4eaae925375e81e659775d9e035afbe409f41 Mon Sep 17 00:00:00 2001 From: Peter Edmond Date: Wed, 18 Jun 2025 13:30:22 +0100 Subject: [PATCH] Corrected Any to All --- insertQualifiers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/insertQualifiers.js b/insertQualifiers.js index 50a4301..05ba8a5 100644 --- a/insertQualifiers.js +++ b/insertQualifiers.js @@ -31,7 +31,7 @@ function insertQualifiers(){ document.querySelector('label[for="location"]').textContent = parsed["1"][0]; // .shift(); // - parsed["1"][0] = "Any"; + parsed["1"][0] = "All"; select = document.getElementById('location'); optionCount = select.options.length; if (optionCount > 1) {return;}