Skip to content

Commit

Permalink
fix(Grid.js): wrong use in getCellDisplayValue
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafal Jozwik authored and mportuga committed Nov 6, 2017
1 parent 0cdf4e9 commit 57d258e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/js/core/factories/Grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -1914,7 +1914,8 @@ angular.module('ui.grid')
}
}

return col.cellDisplayGetterCache(row);
var rowWithCol = angular.extend({}, row, {col: col});
return col.cellDisplayGetterCache(rowWithCol);
};


Expand Down

0 comments on commit 57d258e

Please sign in to comment.