Skip to content

Commit 0ae4c95

Browse files
authored
Merge pull request #5701 from chmirenko/master
Exposing the column being sorted
2 parents 0ee6449 + e8884bf commit 0ae4c95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/core/services/rowSorter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ module.service('rowSorter', ['$parse', 'uiGridConstants', function ($parse, uiGr
455455
propB = grid.getCellValue(rowB, col);
456456
}
457457

458-
tem = sortFn(propA, propB, rowA, rowB, direction);
458+
tem = sortFn(propA, propB, rowA, rowB, direction, col);
459459

460460
idx++;
461461
}

0 commit comments

Comments
 (0)