We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Submitting a:
When trying to update a model (previously fetched from server) I am getting TypeError: Cannot read property 'referenceDef' of undefined
TypeError: Cannot read property 'referenceDef' of undefined
This is because bound methods are included in Object.keys() but does not exists in datx fields. See below where code failes:
Object.keys()
Method is bound in class constructor like this:
dummy() {}
this.dummy = this.dummy.bind(this)
The text was updated successfully, but these errors were encountered:
Fixes #218
ee643d3
Merge pull request #219 from svobik7/patch-1
1891327
This fix was published in version 2.0.0-beta.8 Thanks for the contribution!
Sorry, something went wrong.
No branches or pull requests
Submitting a:
When trying to update a model (previously fetched from server) I am getting
TypeError: Cannot read property 'referenceDef' of undefined
This is because bound methods are included in
Object.keys()
but does not exists in datx fields. See below where code failes:Method is bound in class constructor like this:
Steps to reproduce:
dummy() {}
to your json api modelthis.dummy = this.dummy.bind(this)
The text was updated successfully, but these errors were encountered: