Skip to content

Commit

Permalink
chore: fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
nextchamp-saqib committed Jan 2, 2024
1 parent ae07ce3 commit dfbd98a
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 @@ -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);
Expand Down

0 comments on commit dfbd98a

Please sign in to comment.