Skip to content
Merged
Changes from all commits
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
6 changes: 2 additions & 4 deletions articles/nodejs/bot-builder-nodejs-dialog-replace.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,7 @@ bot.dialog('orderDinner', [
.reloadAction(
"restartOrderDinner", "Ok. Let's start over.",
{
matches: /^start over$/i,
confirmPrompt: "This wil cancel your order. Are you sure?"
matches: /^start over$/i
}
)
.cancelAction(
Expand Down Expand Up @@ -212,8 +211,7 @@ bot.dialog("addDinnerItem", [
.reloadAction(
"restartOrderDinner", "Ok. Let's start over.",
{
matches: /^start over$/i,
confirmPrompt: "This will cancel your order. Are you sure?"
matches: /^start over$/i
}
);
```
Expand Down