Skip to content

Commit f8e56f7

Browse files
committed
fix(combo): removed check before closing
1 parent ab67cb6 commit f8e56f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/combo/combo.common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1208,7 +1208,7 @@ export abstract class IgxComboBaseDirective implements IgxComboBase, AfterViewCh
12081208
this.searchValue = '';
12091209
if (!e.event) {
12101210
this.comboInput?.nativeElement.focus();
1211-
} else if (this.comboInput?.nativeElement !== this.document.activeElement) {
1211+
} else {
12121212
this._onTouchedCallback();
12131213
this.updateValidity();
12141214
}

0 commit comments

Comments
 (0)