Skip to content

Commit 4ef5c8d

Browse files
committed
fix(runtime-core): fix scheduler dedupe when not flushing
1 parent c27dfe1 commit 4ef5c8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/runtime-core/src/scheduler.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let currentFlushPromise: Promise<void> | null = null
1313

1414
let isFlushing = false
1515
let isFlushPending = false
16-
let flushIndex = 0
16+
let flushIndex = -1
1717
let pendingPostFlushCbs: Function[] | null = null
1818
let pendingPostFlushIndex = 0
1919

@@ -114,7 +114,7 @@ function flushJobs(seen?: CountMap) {
114114
callWithErrorHandling(job, null, ErrorCodes.SCHEDULER)
115115
}
116116
}
117-
flushIndex = 0
117+
flushIndex = -1
118118
queue.length = 0
119119

120120
flushPostFlushCbs(seen)

0 commit comments

Comments
 (0)