Skip to content

Commit

Permalink
Fixed #14199 - Add missing emitter
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Nov 28, 2023
1 parent 4098633 commit 6610111
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/components/multiselect/multiselect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1958,7 +1958,11 @@ export class MultiSelect implements OnInit, AfterViewInit, AfterContentInit, Aft
let value = this.modelValue().filter((val) => !ObjectUtils.equals(val, optionValue, this.equalityKey()));

this.updateModel(value, event);

this.onChange.emit({
originalEvent: event,
value: value,
itemValue: optionValue
});
event && event.stopPropagation();
}

Expand Down

0 comments on commit 6610111

Please sign in to comment.