diff --git a/html/static/js/address-suggestion.js b/html/static/js/address-suggestion.js index 9474fbf1..8c2284d6 100644 --- a/html/static/js/address-suggestion.js +++ b/html/static/js/address-suggestion.js @@ -67,6 +67,9 @@ class AddressInput extends HTMLElement { _handleInput(event) { const searchText = event.target.value.trim(); + // Set the form input value if they submit the form without choosing an option + this.value = event.target.value; + // Clear previous timer clearTimeout(this._debounceTimer);