From 5d86da626b247df98f86cacbeee2192cbf972c53 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Sat, 14 Mar 2026 02:01:48 +0000 Subject: [PATCH] Fix address input when user doesn't pick a suggestion or use geolocation --- html/static/js/address-suggestion.js | 3 +++ 1 file changed, 3 insertions(+) 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);