Skip to content

Commit

Permalink
fix(apache-superset#125): fix no-eq-null
Browse files Browse the repository at this point in the history
Signed-off-by: Chok Yip <cxyip1@gmail.com>
  • Loading branch information
cmyip committed Sep 22, 2019
1 parent 2defe97 commit 7b7ced9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ function TableVis(element, props) {
}
const onRemoveFilter = column => {
const obj = removeFilterLocal(column.col, column.val);
if (obj == null) return;
if (obj === null) return;
onAddFilter(obj, false);
};

Expand Down

0 comments on commit 7b7ced9

Please sign in to comment.