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.
1 parent 88ad663 commit 863f6c1Copy full SHA for 863f6c1
packages/svelte/src/internal/client/reactivity/sources.js
@@ -280,7 +280,7 @@ function mark_reactions(signal, status) {
280
set_signal_status(reaction, status);
281
282
// If the signal a) was previously clean or b) is an unowned derived, then mark it
283
- if ((flags & (CLEAN | UNOWNED)) !== 0) {
+ if ((flags & (CLEAN | UNOWNED | MAYBE_DIRTY)) !== 0) {
284
if ((flags & DERIVED) !== 0) {
285
mark_reactions(/** @type {Derived} */ (reaction), MAYBE_DIRTY);
286
} else {
0 commit comments