Skip to content

Commit cf01194

Browse files
committed
fix(esf): Addressing PR comment #1703
1 parent 5370a62 commit cf01194

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

projects/igniteui-angular/src/lib/grids/filtering/excel-style/grid.excel-style-filtering.component.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -349,11 +349,9 @@ export class IgxGridExcelStyleFilteringComponent implements OnDestroy {
349349

350350
this._subMenuOverlaySettings.outlet = (this.grid as any).outlet;
351351

352-
if (this.excelStyleSearch.column) {
353-
requestAnimationFrame(() => {
354-
this.excelStyleSearch.searchInput.nativeElement.focus();
355-
});
356-
}
352+
requestAnimationFrame(() => {
353+
this.excelStyleSearch.searchInput.nativeElement.focus();
354+
});
357355

358356
this.grid.onColumnMoving.pipe(takeUntil(this.destroy$)).subscribe(() => {
359357
this.closeDropdown();

0 commit comments

Comments
 (0)