Skip to content
This repository was archived by the owner on Oct 24, 2018. It is now read-only.

Commit 7dfa9c9

Browse files
Prevent sorting error when data is null
1 parent 09d003f commit 7dfa9c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/classes/Row.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default class Row {
3030

3131
let value = this.getValue(columnName);
3232

33-
if (value === undefined) {
33+
if (value === undefined || value === null) {
3434
return '';
3535
}
3636

0 commit comments

Comments
 (0)