Skip to content

Commit

Permalink
fix regression from #959
Browse files Browse the repository at this point in the history
  • Loading branch information
vegegoku committed Sep 26, 2024
1 parent 45e3af5 commit 89d1c3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ protected void doSetValue(List<V> value, boolean silent) {
clearValue(silent);
} else {
withPauseChangeListenersToggle(
true,
silent,
field ->
value.forEach(
v -> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public Select(String label) {
protected void doSetValue(V value, boolean silent) {
Optional<SelectOption<V>> option = findOptionByValue(value);
if (option.isPresent()) {
onOptionSelected(option.get(), isChangeListenersPaused());
onOptionSelected(option.get(), silent);
} else {
if (isNull(value)) {
clearValue(silent);
Expand Down

0 comments on commit 89d1c3e

Please sign in to comment.