Skip to content

Commit b8309d2

Browse files
committed
Fixed conversions
1 parent ca19658 commit b8309d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

guides/release/upgrading/editions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1854,13 +1854,13 @@ bindings will not work:
18541854
This does not work, since @value is
18551855
an argument and is immutable
18561856
-->
1857-
<Input value=@value />
1857+
<Input @value={{@value}} />
18581858
18591859
<!--
18601860
Instead, we should update the value
18611861
by passing an _action_ to the component
18621862
-->
1863-
<Input value=@value key-up=@updateValue />
1863+
<Input @value={{@value}} @key-up={{@updateValue}} />
18641864
```
18651865

18661866
Additionally, the `mut` helper generally can't be used for the same reason:

0 commit comments

Comments
 (0)