Skip to content

Commit

Permalink
Merge branch '2.0.8' of https://github.com/angular-ui/ng-grid into 2.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
c0bra committed Apr 22, 2014
2 parents 6e3a4a7 + 514d58a commit f5ec1c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/UtilityService.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
}
},
evalProperty: function (entity, path) {
return $parse(path)(entity);
return $parse("entity." + path)({ entity: entity });
},
endsWith: function(str, suffix) {
if (!str || !suffix || typeof str !== "string") {
Expand Down

0 comments on commit f5ec1c9

Please sign in to comment.