fix: only proxy stuff in runes mode ()

pull/12811/head
Rich Harris 8 months ago committed by GitHub
parent 7cbd188f80
commit 8600caf952
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -346,7 +346,7 @@ export function prop(props, key, flags, fallback) {
}
if (arguments.length > 0) {
const new_value = mutation ? get(current_value) : bindable ? proxy(value) : value;
const new_value = mutation ? get(current_value) : runes && bindable ? proxy(value) : value;
if (!current_value.equals(new_value)) {
from_child = true;

Loading…
Cancel
Save