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
We send changes over in the form:
{ "path": "/prefix", "changes": [{"op": "move", "path": "/x", "from": "/y"}] }
On the client-side this should be reconstructed into the patch:
[{"op": "move", "path": "/prefix/x", "from": "/prefix/y"}]
However we are only adding the /prefix to the path key:
/prefix
path
[{"op": "move", "path": "/prefix/x", "from": "/y"}]
The text was updated successfully, but these errors were encountered:
rmorshea
Successfully merging a pull request may close this issue.
We send changes over in the form:
On the client-side this should be reconstructed into the patch:
However we are only adding the
/prefix
to thepath
key:The text was updated successfully, but these errors were encountered: