Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Commit 4755dc8

Browse files
Ghislain BeaulacGhislain Beaulac
authored andcommitted
fix(filter): input filter was using EQ operator instead of Contains
1 parent 9a4213a commit 4755dc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/modules/angular-slickgrid/filters/inputFilter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class InputFilter implements Filter {
2727
}
2828

2929
get operator(): OperatorType | OperatorString {
30-
return (this.columnDef && this.columnDef.filter && this.columnDef.filter.operator) || OperatorType.equal;
30+
return (this.columnDef && this.columnDef.filter && this.columnDef.filter.operator);
3131
}
3232

3333
/**

0 commit comments

Comments
 (0)