Skip to content

Commit

Permalink
Fix Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tjamesallen15 committed Jan 24, 2024
1 parent a0ae7b5 commit a73008e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/datagrid/datagrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -3433,7 +3433,7 @@ Datagrid.prototype = {
getFrozenColumnDetails() {
const frozenCols = this.settings.frozenColumns;
let frozenColArr = [];
let frozenColDtls = [];
const frozenColDtls = [];

if (frozenCols.left.length > 0) {
frozenColArr = $.merge(frozenColArr, frozenCols.left);
Expand Down Expand Up @@ -3543,7 +3543,7 @@ Datagrid.prototype = {
for (let i = 0; i < frozenColDtls.length; i++) {
const filteredCol = targetArr.filter(col => col.id === frozenColDtls[i].id);

isFrozenColumn = filteredCol .length > 0;
isFrozenColumn = filteredCol.length > 0;
if (isFrozenColumn) {
return;
}
Expand Down

0 comments on commit a73008e

Please sign in to comment.