From 27d44382111f463ab6200b2c8f4977787dd8996a Mon Sep 17 00:00:00 2001 From: Carlos Lopez Jr Date: Sat, 4 May 2024 19:05:46 -0400 Subject: [PATCH] fix(input): emit change on listbox change --- components/Input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Input.js b/components/Input.js index 379303cb..80fbbc6a 100644 --- a/components/Input.js +++ b/components/Input.js @@ -109,7 +109,7 @@ export default CustomElement this._suggestedText = suggestionText; this._suggestedValue = suggestionValue; this._hasSuggestion = true; - this.acceptSuggestion(false); + this.acceptSuggestion(true); this.closeListbox(); this.refs.control.focus(); },