We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31bab77 commit e17ceb0Copy full SHA for e17ceb0
packages/selection/src/js/selection.js
@@ -648,7 +648,7 @@
648
* @description Filters all rows by entity and then maps them to Array.
649
*/
650
mapAndFilterRowsByEntity: function(gridRows) {
651
- if(typeof gridRows.reduce === 'function') { // If reduce is available it will be taken, due to better performance
+ if (typeof gridRows.reduce === 'function') { // If reduce is available it will be taken, due to better performance
652
return gridRows.reduce(function (previousVal, currentRow) {
653
if (currentRow.entity.hasOwnProperty('$$hashKey') || !angular.isObject(currentRow.entity)) {
654
previousVal.push(currentRow.entity);
0 commit comments