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
First off, thanks for making and maintaining this project, it seems great!
Given the following:
const Y = require('yjs') newDoc = new Y.Doc() doc = newDoc.getMap('patches') doc.set('patch', {"people": {"michael": { "lastname": "smith", "height": "tall" }, "sal": { "lastname": "orange", "height": "small" } } })
In vanilla js, to dynamically update a property I could do:
let name = 'sal' let prop = 'height' people[name][height] = 'short'
How would I do this same operation in Yjs? I know that issue #11is similar, but does not discuss dealing with nested and dynamic properties.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
First off, thanks for making and maintaining this project, it seems great!
Given the following:
In vanilla js, to dynamically update a property I could do:
How would I do this same operation in Yjs? I know that issue #11is similar, but does not discuss dealing with nested and dynamic properties.
The text was updated successfully, but these errors were encountered: