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
I just wanted to give the new mutable deriveds a try and did a simple test:
let thing = $derived(state); // or just $derived('old') thing = 'new';
However, in the output, I still see the old value, not the updated one.
Note: this works
let thing = $derived('old'); Promise.resolve().then(() => { thing = 'new' });
UPDATE: If you put a console.log before the reassignment, then it starts working.
console.log
https://svelte.dev/playground/f447b4a9ec5d4271a9d1b187ab91a560?version=5.25.2
not relevant
annoyance
The text was updated successfully, but these errors were encountered:
CLEAN
Successfully merging a pull request may close this issue.
Describe the bug
I just wanted to give the new mutable deriveds a try and did a simple test:
However, in the output, I still see the old value, not the updated one.
Note: this works
UPDATE: If you put a
console.log
before the reassignment, then it starts working.Reproduction
https://svelte.dev/playground/f447b4a9ec5d4271a9d1b187ab91a560?version=5.25.2
Logs
System Info
Severity
annoyance
The text was updated successfully, but these errors were encountered: