Skip to content

Commit b20030b

Browse files
authored
docs(Chat): Fix ReplyToIdField parameter name (#3200)
1 parent 96b1332 commit b20030b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/chat/data-binding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ The Chat component provides field mapping parameters to work with different data
9090
| `StatusField` | Field containing message status | `"Status"` |
9191
| `IsDeletedField` | Field indicating if message is deleted | `"IsDeleted"` |
9292
| `IsPinnedField` | Field indicating if message is pinned | `"IsPinned"` |
93-
| `ReplyТоIdField` | Field containing the ID of replied message | `"ReplyТоId"` |
93+
| `ReplyToIdField` | Field containing the ID of replied message | `"ReplyToId"` |
9494
| `SuggestedActionsField` | Field containing suggested actions | `"SuggestedActions"` |
9595

9696
## Dynamic Updates

components/chat/quick-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Message suggestions provide users with quick reply options that appear below the
2525
Height="700px"
2626
TextField="Content"
2727
Suggestions="@QuickReplies"
28-
ReplyТоIdField="ReplyToMessageId"
28+
ReplyToIdField="ReplyToMessageId"
2929
InputValue="@ChatInputValue"
3030
AuthorId="@(2.ToString())"
3131
OnSuggestionClick="@HandleSuggestionClick">

components/chat/templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ This allows you to define context menu actions that can be performed on Chat mes
109109
Height="700px"
110110
TextField="Content"
111111
Suggestions="@(new List<string>() { "Suggestion 1", "Suggestion 2" })"
112-
ReplyТоIdField="ReplyToMessageId"
112+
ReplyToIdField="ReplyToMessageId"
113113
InputValue="@FirstChatInputValue"
114114
EnableSpeechToText="true"
115115
AuthorId="@(1.ToString())">

0 commit comments

Comments
 (0)