Skip to content

Commit 999e9f6

Browse files
committed
WIP
1 parent ac9ad1f commit 999e9f6

File tree

1 file changed

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

1 file changed

+4
-0
lines changed

packages/svelte/src/internal/client/proxy.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,10 @@ export function create_proxy(value, onchanges) {
120120
deleteProperty(target, prop) {
121121
var s = sources.get(prop);
122122

123+
if (batching && s ? s.v !== UNINITIALIZED : prop in target) {
124+
changed_in_batch = true;
125+
}
126+
123127
if (s === undefined) {
124128
if (prop in target) {
125129
sources.set(

0 commit comments

Comments
 (0)