Skip to content

Commit

Permalink
fix #997
Browse files Browse the repository at this point in the history
  • Loading branch information
AllenFang committed Jan 31, 2017
1 parent 3c41019 commit 561a6c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/TableDataStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ export class TableDataStore {
return this.filterText(targetVal, filterVal, cond);
}

filterText(targetVal, filterVal, cond = Const.FILTER_COND_EQ) {
filterText(targetVal, filterVal, cond = Const.FILTER_COND_LIKE) {
targetVal = targetVal.toString();
filterVal = filterVal.toString();
if (cond === Const.FILTER_COND_EQ) {
Expand Down

0 comments on commit 561a6c3

Please sign in to comment.