You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Always use a storeKey when calling parentStoreKeyExists
* Fix refresh, commitRecord and destroy to work when recordOnly is false
Refs emberjs-addons#11.
Calling
refresh
on a SC.Record object does not actually refresh the record.This has to do with line 290 of
lib/system/record.js
. If refresh is called with no arguments or withrecordOnly = false
, the statement:will always evaluate to false.
none(recordOnly)
should be removed.The text was updated successfully, but these errors were encountered: