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
I using observer for LocalDocument with your example:
await myCollection.upsertLocal( 'foobar', // id { // data foo: 'bar' } ); localDoc = await myCollection.getLocal('foobar'); localDoc.get$('foo').subscribe(value => { /* .. */ });
But the error raise:
Uncaught (in promise) TypeError: this._dataSync$.map is not a function at RxLocalDocument.get$ (local-documents.js:135)
Please help me check this problem because my project face with refactor all with this problem. Thank you very much.
The text was updated successfully, but these errors were encountered:
This is a bug at this line. .map() should be imported used in a rxjs-pipe. PR welcomed :)
.map()
Sorry, something went wrong.
b29299a
No branches or pull requests
I using observer for LocalDocument with your example:
But the error raise:
Please help me check this problem because my project face with refactor all with this problem.
Thank you very much.
The text was updated successfully, but these errors were encountered: