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 ac3985a commit 0857409Copy full SHA for 0857409
projects/igniteui-angular/src/lib/grids/filtering/excel-style/excel-style-filtering.component.ts
@@ -510,7 +510,8 @@ export class IgxGridExcelStyleFilteringComponent extends BaseFilteringComponent
510
this.filterValues = this.generateFilterValues();
511
this.generateListData();
512
this.expressionsList.forEach(expr => {
513
- if (this.column.dataType === GridColumnDataType.String && this.column.filteringIgnoreCase && expr.expression.searchVal) {
+ if (this.column.dataType === GridColumnDataType.String && this.column.filteringIgnoreCase
514
+ && expr.expression.searchVal && expr.expression.searchVal instanceof Set) {
515
this.modifyExpression(expr);
516
}
517
});
0 commit comments