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