Skip to content

Commit 71272f8

Browse files
authored
fix: get content value for specific fieldtypes
1 parent 6c79a19 commit 71272f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/filterRows.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function getFilterMethod(rows, filter) {
3434
const getFormattedValue = cell => {
3535
let formatter = CellManager.getCustomCellFormatter(cell);
3636
if (formatter && cell.content) {
37-
cell.html = formatter(cell.content, rows[cell.rowIndex], cell.column, rows[cell.rowIndex]);
37+
cell.html = formatter(cell.content, rows[cell.rowIndex], cell.column, rows[cell.rowIndex], true);
3838
return stripHTML(cell.html);
3939
}
4040
return cell.content || '';

0 commit comments

Comments
 (0)