Skip to content

Commit e17ceb0

Browse files
prx-lmomportuga
authored andcommitted
fixed code style
1 parent 31bab77 commit e17ceb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/selection/src/js/selection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@
648648
* @description Filters all rows by entity and then maps them to Array.
649649
*/
650650
mapAndFilterRowsByEntity: function(gridRows) {
651-
if(typeof gridRows.reduce === 'function') { // If reduce is available it will be taken, due to better performance
651+
if (typeof gridRows.reduce === 'function') { // If reduce is available it will be taken, due to better performance
652652
return gridRows.reduce(function (previousVal, currentRow) {
653653
if (currentRow.entity.hasOwnProperty('$$hashKey') || !angular.isObject(currentRow.entity)) {
654654
previousVal.push(currentRow.entity);

0 commit comments

Comments
 (0)