Skip to content

Commit

Permalink
Merge pull request #15956 from primefaces/issue-15954
Browse files Browse the repository at this point in the history
Fixed #15954 - MultiSelect | MultiSelectChangeEvent wrong select value
  • Loading branch information
cetincakiroglu authored Jul 4, 2024
2 parents 2f480b3 + 45d20f2 commit 99694fd
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 99694fd

Please sign in to comment.