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
When type something in this REPL throws error in console. https://svelte.technology/repl?version=2.5.0&gist=0f246a56ffc46239e1d1fc1448f18d4a If I remove {...settings} in Container.html then it works fine. Same code in 2.4.3 works without any issues but does not work with 2.4.4 or later.
The text was updated successfully, but these errors were encountered:
Looks like problem is on this code.
var switch_instance_changes = {}; var switch_instance_changes = changed.settings && getSpreadUpdate(switch_instance_spread_levels, [ ctx.settings ]);
Maybe we can fix it like this
var switch_instance_changes = {}; if (changed.settings) { switch_instance_changes = getSpreadUpdate(switch_instance_spread_levels, [ ctx.settings ]); }
Sorry, something went wrong.
I found workaround... add computed prop then work.
computed:{ settings: (all) => { return all.settings; }, .......
https://svelte.technology/repl?version=2.5.0&gist=47c0e86836c4088475dccecbcfc75153
fixed in 2.6.2, thanks
No branches or pull requests
When type something in this REPL throws error in console.
https://svelte.technology/repl?version=2.5.0&gist=0f246a56ffc46239e1d1fc1448f18d4a
If I remove {...settings} in Container.html then it works fine.
Same code in 2.4.3 works without any issues but does not work with 2.4.4 or later.
The text was updated successfully, but these errors were encountered: