Skip to content

Commit 4df772a

Browse files
committed
Merge branch 'jfremy-pr-506'
2 parents e1f9767 + 8a90468 commit 4df772a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/store/TableDataStore.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,9 @@ export class TableDataStore {
387387
let filterVal;
388388
for (const key in filterObj) {
389389
let targetVal = row[key];
390-
if (targetVal === null) return false;
390+
if (targetVal === null || targetVal === undefined) {
391+
targetVal = '';
392+
}
391393

392394
switch (filterObj[key].type) {
393395
case Const.FILTER_TYPE.NUMBER: {

0 commit comments

Comments
 (0)