Skip to content

Commit

Permalink
Merge pull request #169 from frappe/filter-with-content-value
Browse files Browse the repository at this point in the history
  • Loading branch information
shariquerik authored Mar 3, 2023
2 parents 6c79a19 + 71272f8 commit ddb2dd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filterRows.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
cell.html = formatter(cell.content, rows[cell.rowIndex], cell.column, rows[cell.rowIndex], true);
return stripHTML(cell.html);
}
return cell.content || '';
Expand Down

0 comments on commit ddb2dd3

Please sign in to comment.