Skip to content

Commit 69140c4

Browse files
committed
Add missing curly braces
1 parent 4f0fb8a commit 69140c4

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)