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
@inertiajs/vue3
On partial reloads Object props are updated incorrectly.
if we have a data prop with value
{ "b": 2, "a": 1, "c": 3, "d": 4 }
And on the partial reload we get a new value of
{ "b": 40 }
The missing keys are being kept and the new value is returned as
{ "b": 40, "a": 1, "c": 3, "d": 4 }
Minimal reproduction - https://github.com/Megarsh/inertia-issue
The text was updated successfully, but these errors were encountered:
Hey thanks for reporting, this should be fixed now in v1.2.0 👍
Sorry, something went wrong.
reinink
Successfully merging a pull request may close this issue.
Version:
@inertiajs/vue3
version: 1.1.0Describe the problem:
On partial reloads Object props are updated incorrectly.
Example
if we have a data prop with value
And on the partial reload we get a new value of
The missing keys are being kept and the new value is returned as
Steps to reproduce:
Minimal reproduction - https://github.com/Megarsh/inertia-issue
The text was updated successfully, but these errors were encountered: