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 ef612cd commit 0aa4db5Copy full SHA for 0aa4db5
projects/igniteui-angular/src/lib/grids/filtering/grid-filtering-row.component.ts
@@ -753,8 +753,7 @@ export class IgxGridFilteringRowComponent implements AfterViewInit {
753
const containerRect = this.container.nativeElement.getBoundingClientRect();
754
755
for (let index = 0; index < chipAraeChildren.length; index++) {
756
- if (Math.ceil(chipAraeChildren[index].getBoundingClientRect().left) < Math.ceil(containerRect.left) &&
757
- Math.ceil(chipAraeChildren[index].getBoundingClientRect().right) < Math.ceil(containerRect.left)) {
+ if (Math.ceil(chipAraeChildren[index].getBoundingClientRect().right) < Math.ceil(containerRect.left)) {
758
count++;
759
}
760
0 commit comments