Skip to content

Commit db17c7f

Browse files
committed
fix: revert to original solution
1 parent 42b32c2 commit db17c7f

File tree

1 file changed

+1
-1
lines changed
  • packages/svelte/src/internal/client/reactivity

1 file changed

+1
-1
lines changed

packages/svelte/src/internal/client/reactivity/sources.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ function mark_reactions(signal, status) {
329329
set_signal_status(reaction, status);
330330

331331
// If the signal a) was previously clean or b) is an unowned derived, then mark it
332-
if ((flags & (CLEAN | UNOWNED)) !== 0) {
332+
if ((flags & (CLEAN | UNOWNED | MAYBE_DIRTY)) !== 0) {
333333
if ((flags & DERIVED) !== 0) {
334334
mark_reactions(/** @type {Derived} */ (reaction), MAYBE_DIRTY);
335335
} else {

0 commit comments

Comments
 (0)