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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
For an object like:
{ state: { expanded: false, checked: false }, children: [ ... ] }
if I set expanded = true the patch output is:
expanded = true
{ state: { expanded: true, checked: false }, children: [ ... ] }
ie. Neither checked nor children have changed but are included in the patch for do and undo.
checked
children
If I do the same with odiff I see only expanded has changed.
expanded
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For an object like:
if I set
expanded = true
the patch output is:ie. Neither
checked
norchildren
have changed but are included in the patch for do and undo.If I do the same with odiff I see only
expanded
has changed.The text was updated successfully, but these errors were encountered: