diff --git a/src/filterRows.js b/src/filterRows.js index 4c30806..8560918 100644 --- a/src/filterRows.js +++ b/src/filterRows.js @@ -36,7 +36,7 @@ function getFilterMethod(rows, data, filter) { if (data && data.constructor.name === 'DataManager') { data = data.getData(cell.rowIndex); } else { - data = rows[cell.rowIndex] + data = rows[cell.rowIndex]; } if (formatter && cell.content) { cell.html = formatter(cell.content, rows[cell.rowIndex], cell.column, data, filter);