Skip to content

Commit

Permalink
fix #427
Browse files Browse the repository at this point in the history
FIX [#427](#427) The filters doesn't work when the column contains null values
  • Loading branch information
Kurtas committed Apr 28, 2016
1 parent 0c69ce6 commit 2199431
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/store/TableDataStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ export class TableDataStore {
let filterVal;
for (const key in filterObj) {
let targetVal = row[key];
if (targetVal === null) return false;

switch (filterObj[key].type) {
case Const.FILTER_TYPE.NUMBER: {
Expand Down

0 comments on commit 2199431

Please sign in to comment.