From a1cf44d6aa68e84e80b7bcb3545c7d63f792091a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yi=C4=9Fit=20FINDIKLI?= Date: Tue, 21 Sep 2021 19:12:25 +0300 Subject: [PATCH] Fixed #10644 - Extra space between MultiSelect and filter list --- src/app/components/multiselect/multiselect.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/components/multiselect/multiselect.ts b/src/app/components/multiselect/multiselect.ts index cf3c60ffb8e..db1d755d378 100755 --- a/src/app/components/multiselect/multiselect.ts +++ b/src/app/components/multiselect/multiselect.ts @@ -1033,6 +1033,8 @@ export class MultiSelect implements OnInit,AfterViewInit,AfterContentInit,AfterV this._filterValue = ( event.target).value; this.activateFilter(); this.onFilter.emit({originalEvent: event, filter: this._filterValue}); + this.cd.detectChanges(); + this.alignOverlay(); } activateFilter() {