We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac9ad1f commit 999e9f6Copy full SHA for 999e9f6
packages/svelte/src/internal/client/proxy.js
@@ -120,6 +120,10 @@ export function create_proxy(value, onchanges) {
120
deleteProperty(target, prop) {
121
var s = sources.get(prop);
122
123
+ if (batching && s ? s.v !== UNINITIALIZED : prop in target) {
124
+ changed_in_batch = true;
125
+ }
126
+
127
if (s === undefined) {
128
if (prop in target) {
129
sources.set(
0 commit comments