Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating upgrading editions.md #709

Merged
merged 2 commits into from
Apr 2, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions guides/release/upgrading/editions.md
Original file line number Diff line number Diff line change
Expand Up @@ -1854,13 +1854,13 @@ bindings will not work:
This does not work, since @value is
an argument and is immutable
-->
{{input value=@value}}
<Input value=@value />
mdbiscan marked this conversation as resolved.
Show resolved Hide resolved
mdbiscan marked this conversation as resolved.
Show resolved Hide resolved

<!--
Instead, we should update the value
by passing an _action_ to the component
-->
{{input value=@value key-up=@updateValue}}
<Input value=@value key-up=@updateValue />
mdbiscan marked this conversation as resolved.
Show resolved Hide resolved
```

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