From 0f7f3f2c94fc0e638a496bab5b486a7cd1944387 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20=C3=87etin?= <92744169+mehmetcetin01140@users.noreply.github.com> Date: Wed, 14 Feb 2024 13:42:32 +0300 Subject: [PATCH] Fixed #14586 - Dropdown | filterValue initial value is ignored and binding not working --- src/app/components/dropdown/dropdown.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/components/dropdown/dropdown.ts b/src/app/components/dropdown/dropdown.ts index 54c58442874..253e1495298 100755 --- a/src/app/components/dropdown/dropdown.ts +++ b/src/app/components/dropdown/dropdown.ts @@ -688,7 +688,9 @@ export class Dropdown implements OnInit, AfterViewInit, AfterContentInit, AfterV return this._filterValue(); } set filterValue(val: string | undefined | null) { - this._filterValue.set(val); + setTimeout(() => { + this._filterValue.set(val); + }); } /** * An array of objects to display as the available options.