From ebd8703d5add804aabc93951b076ad9346fcb19a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Wed, 13 Dec 2023 10:44:14 +0300 Subject: [PATCH] Fixed #14313 - Refactor condition --- src/app/components/multiselect/multiselect.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/multiselect/multiselect.ts b/src/app/components/multiselect/multiselect.ts index 5474dd88ad4..6bad5fdf1ef 100755 --- a/src/app/components/multiselect/multiselect.ts +++ b/src/app/components/multiselect/multiselect.ts @@ -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()