Skip to content

Commit

Permalink
fix(select): select check additional count event loop
Browse files Browse the repository at this point in the history
  • Loading branch information
Aykut Saraç committed Nov 22, 2023
1 parent fd32b93 commit 18afa26
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/select/bl-select.ts
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,9 @@ export default class BlSelect<ValueType extends FormValue = string> extends Form
this.value = null;
}

this._checkAdditionalItemCount();
if (_changedProperties.has("_selectedOptions")) {
this._checkAdditionalItemCount();
}
}

/**
Expand Down

0 comments on commit 18afa26

Please sign in to comment.