Skip to content

Commit 5557a76

Browse files
committed
fix(combo): removed check before closing
1 parent ed51673 commit 5557a76

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
@@ -1206,7 +1206,7 @@ export abstract class IgxComboBaseDirective extends DisplayDensityBase implement
12061206
this.searchValue = '';
12071207
if (!e.event) {
12081208
this.comboInput?.nativeElement.focus();
1209-
} else if (this.comboInput?.nativeElement !== document.activeElement) {
1209+
} else {
12101210
this._onTouchedCallback();
12111211
this.updateValidity();
12121212
}

0 commit comments

Comments
 (0)