Skip to content

Commit

Permalink
πŸš™
Browse files Browse the repository at this point in the history
  • Loading branch information
jpzwarte committed Sep 13, 2024
1 parent 72f291c commit f9890e6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/components/combobox/src/combobox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,7 @@ export class Combobox<T = unknown> extends FormControlMixin(ScopedElementsMixin(
this.#toggleSelected(this.currentOption);
this.#updateSelection(this.currentOption);
this.#updateFilteredOptions();
this.#updateTextFieldValue();
this.#updateValue();

if (!this.multiple) {
Expand Down Expand Up @@ -395,6 +396,7 @@ export class Combobox<T = unknown> extends FormControlMixin(ScopedElementsMixin(
this.#toggleSelected(option);
this.#updateSelection(option);
this.#updateFilteredOptions();
this.#updateTextFieldValue();
this.#updateValue();

if (!this.multiple) {
Expand Down

0 comments on commit f9890e6

Please sign in to comment.