Skip to content

Commit

Permalink
Fix #14319 for multiselect
Browse files Browse the repository at this point in the history
  • Loading branch information
cetincakiroglu committed Jan 10, 2024
1 parent 063e025 commit 08b6478
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/components/multiselect/multiselect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,9 @@ export class MultiSelect implements OnInit, AfterViewInit, AfterContentInit, Aft
return options;
}
set options(val: any[] | undefined) {
this._options.set(val);
if (!ObjectUtils.deepEquals(this._options(), val)) {
this._options.set(val);
}
}
/**
* When specified, filter displays with this value.
Expand Down

0 comments on commit 08b6478

Please sign in to comment.