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
Describe the bug When doubling binding to a value that is derived from a prop, the code that updates the double binding also invalidates the prop.
To Reproduce https://svelte.dev/repl/4d808dfa0c464af0988414a0885b4086?version=3.19.1
Line 75 of the JS Output show it incorrectly invalidating the prop, even though the prop is never assigned to the value.
Expected behavior The prop should not be invalidated as it does not depend upon the value.
Information about your Svelte project:
Severity At the moment I am able to work around it by making a copy of the data higher in the component tree, where the prop is not double bound to.
The text was updated successfully, but these errors were encountered:
related #4448
Sorry, something went wrong.
Yep that appears to be the same bug.
No branches or pull requests
Describe the bug
When doubling binding to a value that is derived from a prop, the code that updates the double binding also invalidates the prop.
To Reproduce
https://svelte.dev/repl/4d808dfa0c464af0988414a0885b4086?version=3.19.1
Line 75 of the JS Output show it incorrectly invalidating the prop, even though the prop is never assigned to the value.
Expected behavior
The prop should not be invalidated as it does not depend upon the value.
Information about your Svelte project:
Severity
At the moment I am able to work around it by making a copy of the data higher in the component tree, where the prop is not double bound to.
The text was updated successfully, but these errors were encountered: