diff --git a/src/vanilla-dataTables.js b/src/vanilla-dataTables.js index e757876..b916590 100644 --- a/src/vanilla-dataTables.js +++ b/src/vanilla-dataTables.js @@ -860,7 +860,7 @@ td = createElement("td"); // Fixes #29 - if (!row[i] && !row[i].length) { + if (!row[i] || !row[i].length) { row[i] = ""; }