We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
MAYBE_DIRTY
CLEAN
1 parent 3bb6481 commit 81d972fCopy full SHA for 81d972f
packages/svelte/src/internal/client/reactivity/sources.js
@@ -172,7 +172,7 @@ export function internal_set(source, value) {
172
}
173
174
if ((source.f & DERIVED) !== 0) {
175
- set_signal_status(source, CLEAN);
+ set_signal_status(source, (source.f & UNOWNED) === 0 ? CLEAN : MAYBE_DIRTY);
176
177
178
mark_reactions(source, DIRTY);
0 commit comments