Skip to content

Commit b1960ce

Browse files
committed
complete merge
1 parent 541ab97 commit b1960ce

File tree

1 file changed

+8
-0
lines changed
  • packages/svelte/src/internal/client/reactivity

1 file changed

+8
-0
lines changed

packages/svelte/src/internal/client/reactivity/batch.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,14 @@ export class Batch {
131131
}
132132
}
133133

134+
for (const e of this.skipped_effects) {
135+
batch.skipped_effects.add(e);
136+
}
137+
138+
for (const fn of this.#callbacks) {
139+
batch.#callbacks.add(fn);
140+
}
141+
134142
this.remove();
135143
break;
136144
}

0 commit comments

Comments
 (0)