diff --git a/src/filterRows.js b/src/filterRows.js index 4f56712..125c02f 100644 --- a/src/filterRows.js +++ b/src/filterRows.js @@ -34,7 +34,7 @@ function getFilterMethod(rows, filter) { const getFormattedValue = cell => { let formatter = CellManager.getCustomCellFormatter(cell); if (formatter && cell.content) { - cell.html = formatter(cell.content, rows[cell.rowIndex], cell.column, rows[cell.rowIndex], true); + cell.html = formatter(cell.content, rows[cell.rowIndex], cell.column, rows[cell.rowIndex], filter); return stripHTML(cell.html); } return cell.content || '';