Skip to content

Commit 517fdcf

Browse files
committed
Merge branch 'main' into state-raw-docs
2 parents 6783a82 + 8600caf commit 517fdcf

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ export function prop(props, key, flags, fallback) {
346346
}
347347

348348
if (arguments.length > 0) {
349-
const new_value = mutation ? get(current_value) : bindable ? proxy(value) : value;
349+
const new_value = mutation ? get(current_value) : runes && bindable ? proxy(value) : value;
350350

351351
if (!current_value.equals(new_value)) {
352352
from_child = true;

0 commit comments

Comments
 (0)