Skip to content

Commit 863f6c1

Browse files
authored
Update sources.js
1 parent 88ad663 commit 863f6c1

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
@@ -280,7 +280,7 @@ function mark_reactions(signal, status) {
280280
set_signal_status(reaction, status);
281281

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

0 commit comments

Comments
 (0)