Skip to content

Commit

Permalink
Fixed #14313 - Refactor condition
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Dec 13, 2023
1 parent fd2d847 commit ebd8703
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 @@ -1788,7 +1788,7 @@ export class MultiSelect implements OnInit, AfterViewInit, AfterContentInit, Aft
return;
}

if (this.selectAll !== null) {
if (this.selectAll != null) {
this.onSelectAllChange.emit({
originalEvent: event,
checked: !this.allSelected()
Expand Down

0 comments on commit ebd8703

Please sign in to comment.