Skip to content

Commit

Permalink
Fixed #15954 - MultiSelect | MultiSelectChangeEvent wrong select value
Browse files Browse the repository at this point in the history
  • Loading branch information
mehmetcetin01140 committed Jul 3, 2024
1 parent 20c2080 commit 45d20f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/multiselect/multiselect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1379,7 +1379,7 @@ export class MultiSelect implements OnInit, AfterViewInit, AfterContentInit, Aft
isFocus && DomHandler.focus(this.focusInputViewChild?.nativeElement);

this.onChange.emit({
originalEvent: event,
originalEvent: { ...event, selected: !event.selected },
value: value,
itemValue: option
});
Expand Down

0 comments on commit 45d20f2

Please sign in to comment.