From fa7b1d4839126b4a6fc3513f85496872e094af25 Mon Sep 17 00:00:00 2001 From: vaibhav rai Date: Tue, 9 Nov 2021 23:38:02 +0530 Subject: [PATCH] fix lint and rebase --- src/runtime/internal/scheduler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/internal/scheduler.ts b/src/runtime/internal/scheduler.ts index 3f28527cb2..3f1403b081 100644 --- a/src/runtime/internal/scheduler.ts +++ b/src/runtime/internal/scheduler.ts @@ -56,7 +56,7 @@ export function flush() { while (binding_callbacks.length) { binding_callbacks.pop()(); } - previous_dirty_components = [...dirty_components] + previous_dirty_components = [...dirty_components]; // then, once components are updated, call // afterUpdate functions. This may cause // subsequent updates...