Skip to content

Commit

Permalink
Resolved bug with dropdown options not being cleared when the iterabl…
Browse files Browse the repository at this point in the history
…e is set to an empty array (#1019)
  • Loading branch information
MarkColeman1 authored Nov 3, 2023
1 parent 12602c9 commit 1be5ba0
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,8 @@ export class SelectComponent extends _InputMixinBase implements ControlValueAcce

if (arr.length) {
this.options = arr;
} else {
this.options = [];
}
}

Expand Down

0 comments on commit 1be5ba0

Please sign in to comment.