We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be244a8 commit fd05909Copy full SHA for fd05909
projects/igniteui-angular/src/lib/grids/filtering/base/grid-filtering-row.component.ts
@@ -446,7 +446,7 @@ export class IgxGridFilteringRowComponent implements AfterViewInit {
446
requestAnimationFrame(() => {
447
const focusedElement = document.activeElement;
448
449
- if (focusedElement.className === 'igx-chip__remove' || focusedElement.tagName === 'IGX-DAY-ITEM') {
+ if (focusedElement.classList.contains('igx-chip__remove') || focusedElement.tagName === 'IGX-DAY-ITEM') {
450
return;
451
}
452
0 commit comments