Skip to content

Commit f55827a

Browse files
committed
fix(combo): fix comparison of nativeElement in handleClosed method
1 parent de6286b commit f55827a

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
@@ -1218,7 +1218,7 @@ export abstract class IgxComboBaseDirective extends DisplayDensityBase implement
12181218
/** @hidden @internal */
12191219
public handleClosed() {
12201220
this.closed.emit({ owner: this });
1221-
if(this.comboInput.nativeElement !== this.document.activeElement){
1221+
if(this.comboInput.nativeElement !== document.activeElement){
12221222
this.validateComboState();
12231223
}
12241224
}

0 commit comments

Comments
 (0)