diff --git a/packages/components/combobox/src/combobox.ts b/packages/components/combobox/src/combobox.ts index eaf54f72b..66012ddad 100644 --- a/packages/components/combobox/src/combobox.ts +++ b/packages/components/combobox/src/combobox.ts @@ -353,6 +353,7 @@ export class Combobox extends FormControlMixin(ScopedElementsMixin( this.#toggleSelected(this.currentOption); this.#updateSelection(this.currentOption); this.#updateFilteredOptions(); + this.#updateTextFieldValue(); this.#updateValue(); if (!this.multiple) { @@ -395,6 +396,7 @@ export class Combobox extends FormControlMixin(ScopedElementsMixin( this.#toggleSelected(option); this.#updateSelection(option); this.#updateFilteredOptions(); + this.#updateTextFieldValue(); this.#updateValue(); if (!this.multiple) {