Skip to content

Commit

Permalink
Merge pull request #2959 from wecc/canary-build-fix
Browse files Browse the repository at this point in the history
Remove value from retrieveFromCurrentState CP
  • Loading branch information
igorT committed Mar 30, 2015
2 parents 6990154 + 3d1505a commit 5b2a17e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ember-data/lib/system/model/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var RESERVED_MODEL_PROPS = [
'currentState', 'data', 'store'
];

var retrieveFromCurrentState = Ember.computed('currentState', function(key, value) {
var retrieveFromCurrentState = Ember.computed('currentState', function(key) {
return get(get(this, 'currentState'), key);
}).readOnly();

Expand Down

0 comments on commit 5b2a17e

Please sign in to comment.