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
core.es5.js:1020 ERROR TypeError: Cannot read property 'makeHasManyLocalKeys' of undefined
at js-data-localstorage.js:1221
at Array.forEach (<anonymous>)
at js-data-localstorage.js:1220
at LocalStorageAdapter.loadHasManyLocalKeys (js-data-localstorage.js:1245)
at js-data-localstorage.js:1109
at Object._forRelation (js-data.js:250)
at js-data.js:894
at Array.forEach (<anonymous>)
at Object.forEachRelation (js-data.js:893)
at js-data-localstorage.js:1100
localKeys = localKeys.concat(self.self.makeHasManyLocalKeys(mapper, def, record));
Self is declared twice (like 1221 in the npm version of the 3.0.1beta2). The current this scope has no variable called self.
Removing one of the duplicate selfs has resolved my issue,
Thanks!
The text was updated successfully, but these errors were encountered:
Problem descriptions
Relations cannot be fetched due to a bug.
The line of code causing the issue:
localKeys = localKeys.concat(self.self.makeHasManyLocalKeys(mapper, def, record));
Self is declared twice (like 1221 in the npm version of the 3.0.1beta2). The current this scope has no variable called self.
Removing one of the duplicate selfs has resolved my issue,
Thanks!
The text was updated successfully, but these errors were encountered: