Skip to content

Commit 1bbe8a7

Browse files
committed
fix(filtering): Fix issue when switch conditions #6519
1 parent 92f489b commit 1bbe8a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ export class IgxGridFilteringRowComponent implements AfterViewInit {
765765
}
766766

767767
private conditionChangedCallback() {
768-
if (!!this.expression.searchVal || this.expression.searchVal === 0) {
768+
if (!this.expression.searchVal || this.expression.searchVal === 0) {
769769
this.filter();
770770
} else if (this.value) {
771771
this.value = null;

0 commit comments

Comments
 (0)