From 5859789119322e48814a3a90c38265e31523be8e Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Mon, 30 May 2022 15:42:54 +0300 Subject: [PATCH] Fix a bug input component with focus state --- sharedComponents/input/input.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharedComponents/input/input.component.ts b/sharedComponents/input/input.component.ts index eede7847..6b39e76f 100644 --- a/sharedComponents/input/input.component.ts +++ b/sharedComponents/input/input.component.ts @@ -528,8 +528,8 @@ export class InputComponent implements OnInit, OnDestroy, AfterViewInit, OnChang } else { if (this.optionBox) { UIkit.dropdown(this.optionBox.nativeElement).hide(); + this.focused = false; } - this.focused = false; } }