From 1e4dcb6ad4cd672e4837d9ac0031962f2383fcd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87etin?= <69278826+cetincakiroglu@users.noreply.github.com> Date: Fri, 17 Nov 2023 10:55:36 +0300 Subject: [PATCH] Fixed #14128 --- 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 79fbb5c7e7d..b3da382f5b2 100755 --- a/src/app/components/dropdown/dropdown.ts +++ b/src/app/components/dropdown/dropdown.ts @@ -1262,7 +1262,7 @@ export class Dropdown implements OnInit, AfterViewInit, AfterContentInit, AfterV onInputBlur(event: Event) { this.focused = false; - this.onBlur.emit(event); + (this.overlayVisible === false) && this.onBlur.emit(event); if (!this.preventModelTouched) { this.onModelTouched();