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
I had a problem calling node.save(); which resulted in this error:
TypeError: Cannot read property 'get' of undefined
at node.js:140
at Array.filter (<anonymous>)
at Class.save (node.js:139)
at Class.superWrapper [as save] (ember.debug.js:45374)
Where record was not found in m. However, I did find that m contained _record.
So my solution was to just change all references of m.record to m._record and this fixed the issue for me. Not entirely sure if this is a correct solution though.
Hi,
I had a problem calling
node.save();which resulted in this error:I found the culprit in addons/models/node.js
Within the line
Where
recordwas not found inm. However, I did find thatmcontained_record.So my solution was to just change all references of
m.recordtom._recordand this fixed the issue for me. Not entirely sure if this is a correct solution though.