Skip to content

Commit 32df71a

Browse files
authored
Merge pull request ember-learn#697 from alexBaizeau/angle-bracket--action-and-events
Update docs for the built-in components for components/actions-and-events.md
2 parents 4489958 + 69140c4 commit 32df71a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

guides/release/components/actions-and-events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ text input element whose `value` attribute is set to `confirmValue`:
409409
@text="Click to send your message."
410410
@onConfirm={{action this.sendMessage "info"}}
411411
as |confirmValue|>
412-
{{input value=confirmValue}}
412+
<Input @value={{confirmValue}} />
413413
</ButtonWithConfirmation>
414414
```
415415

@@ -444,7 +444,7 @@ messaging service with the `target` attribute.
444444
@text="Click to send your message."
445445
@onConfirm={{action this.messaging.sendMessage "info"}}
446446
as |confirmValue|>
447-
{{input value=confirmValue}}
447+
<Input @value={{confirmValue}} />
448448
</ButtonWithConfirmation>
449449
```
450450

0 commit comments

Comments
 (0)