We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7fbe81 commit 17b2012Copy full SHA for 17b2012
packages/reactivity/src/debug.ts
@@ -69,11 +69,8 @@ function setupFlagsHandler(target: Subscriber): void {
69
},
70
set(value) {
71
if (
72
- !(
73
- (target as any)._flags &
74
- (SubscriberFlags.PendingComputed | SubscriberFlags.Dirty)
75
- ) &&
76
- !!(value & (SubscriberFlags.PendingComputed | SubscriberFlags.Dirty))
+ !((target as any)._flags & SubscriberFlags.Propagated) &&
+ !!(value & SubscriberFlags.Propagated)
77
) {
78
onTrigger(this)
79
}
0 commit comments