File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/svelte/src/internal/client/reactivity Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ export function internal_set(source, value) {
190190 is_runes ( ) &&
191191 active_effect !== null &&
192192 ( active_effect . f & CLEAN ) !== 0 &&
193- ( active_effect . f & ( BRANCH_EFFECT | ROOT_EFFECT | BLOCK_EFFECT ) ) === 0
193+ ( active_effect . f & ( BRANCH_EFFECT | ROOT_EFFECT ) ) === 0
194194 ) {
195195 if ( untracked_writes === null ) {
196196 set_untracked_writes ( [ source ] ) ;
@@ -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 | MAYBE_DIRTY ) ) !== 0 ) {
283+ if ( ( flags & ( CLEAN | UNOWNED ) ) !== 0 ) {
284284 if ( ( flags & DERIVED ) !== 0 ) {
285285 mark_reactions ( /** @type {Derived } */ ( reaction ) , MAYBE_DIRTY ) ;
286286 } else {
You can’t perform that action at this time.
0 commit comments