Skip to content

Commit

Permalink
chore: linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shariquerik committed Dec 21, 2023
1 parent 1979641 commit 98835d8
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 @@ -33,7 +33,7 @@ export default function filterRows(rows, filters, data) {
function getFilterMethod(rows, data, filter) {
const getFormattedValue = cell => {
let formatter = CellManager.getCustomCellFormatter(cell);
if (data && data.constructor.name == "DataManager") {
if (data && data.constructor.name === 'DataManager') {
data = data.getData(cell.rowIndex);
}
if (formatter && cell.content) {
Expand Down

0 comments on commit 98835d8

Please sign in to comment.