pull/16060/head
ComputerGuy 4 months ago
parent db9b0b53a9
commit 4d5a28f862

@ -257,7 +257,7 @@ export function proxy(value, path, preserve_path = true) {
s = DEV ? tag_source(s, to_trace_name(prop)) : s; s = DEV ? tag_source(s, to_trace_name(prop)) : s;
set( set(
s, s,
with_parent(() => proxy(value, to_trace_name(prop), false)) with_parent(() => proxy(value, to_trace_name(prop)))
); );
sources.set(prop, s); sources.set(prop, s);
} }
@ -265,7 +265,7 @@ export function proxy(value, path, preserve_path = true) {
has = s.v !== UNINITIALIZED; has = s.v !== UNINITIALIZED;
set( set(
s, s,
with_parent(() => proxy(value, to_trace_name(prop), false)) with_parent(() => proxy(value, to_trace_name(prop)))
); );
} }

Loading…
Cancel
Save