Skip to content

Commit 23224e0

Browse files
prx-lmomportuga
authored andcommitted
[hotfix/5502]
- fixed unknown variable cols error
1 parent d490fe8 commit 23224e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/js/services/rowSearcher.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ module.service('rowSearcher', ['gridUtil', 'uiGridConstants', function (gridUtil
326326
return hasTerm;
327327
};
328328

329-
for (var i = 0; i < cols.length; i++) {
329+
for (var i = 0; i < columns.length; i++) {
330330
var col = columns[i];
331331

332332
if (typeof(col.filters) !== 'undefined' && hasTerm(col.filters) ) {

0 commit comments

Comments
 (0)