From ec5574399f8bedc64717ea13fe06dcd86b734701 Mon Sep 17 00:00:00 2001 From: Guillaume Tritsch Date: Thu, 31 Aug 2023 10:24:31 +0200 Subject: [PATCH] fixe: #13571 | Multiselect not repositioned --- src/app/components/multiselect/multiselect.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/components/multiselect/multiselect.ts b/src/app/components/multiselect/multiselect.ts index b15812a2475..dc15d5948f1 100755 --- a/src/app/components/multiselect/multiselect.ts +++ b/src/app/components/multiselect/multiselect.ts @@ -1471,6 +1471,7 @@ export class MultiSelect implements OnInit, AfterViewInit, AfterContentInit, Aft onFilterInputChange(event: KeyboardEvent) { this._filterValue = (event.target).value; this.activateFilter(); + this.filtered = true; this.onFilter.emit({ originalEvent: event, filter: this._filterValue }); this.cd.detectChanges(); }