From 36a383e94e1695f18c50936362da46073ecf2ef4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20=C3=87etin?= <92744169+mehmetcetin01140@users.noreply.github.com> Date: Thu, 22 Feb 2024 14:41:28 +0300 Subject: [PATCH] Fixed #14567 - Dropdown | If editable = true and filter = true and you start typing, it will search by default but not start editing. --- src/app/components/dropdown/dropdown.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/dropdown/dropdown.ts b/src/app/components/dropdown/dropdown.ts index 27a02ee16f8..cb81a4cd1f9 100755 --- a/src/app/components/dropdown/dropdown.ts +++ b/src/app/components/dropdown/dropdown.ts @@ -1309,7 +1309,7 @@ export class Dropdown implements OnInit, AfterViewInit, AfterContentInit, AfterV if (this.filterViewChild && this.filterViewChild.nativeElement) { this.preventModelTouched = true; - if (this.autofocusFilter) { + if (this.autofocusFilter && !this.editable) { this.filterViewChild.nativeElement.focus(); } }