chore: fix linter

This commit is contained in:
Saqib Ansari 2024-01-02 12:24:06 +05:30 committed by GitHub
parent ae07ce3712
commit dfbd98a502
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);