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

Commit 7b7ced9

Browse files
committed
fix(#125): fix no-eq-null
Signed-off-by: Chok Yip <cxyip1@gmail.com>
1 parent 2defe97 commit 7b7ced9

File tree

1 file changed

+1
-1
lines changed
  • packages/superset-ui-legacy-plugin-chart-table/src

1 file changed

+1
-1
lines changed

packages/superset-ui-legacy-plugin-chart-table/src/Table.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ function TableVis(element, props) {
156156
}
157157
const onRemoveFilter = column => {
158158
const obj = removeFilterLocal(column.col, column.val);
159-
if (obj == null) return;
159+
if (obj === null) return;
160160
onAddFilter(obj, false);
161161
};
162162

0 commit comments

Comments
 (0)