diff --git a/components/chat/data-binding.md b/components/chat/data-binding.md index 40d199585..db11626cd 100644 --- a/components/chat/data-binding.md +++ b/components/chat/data-binding.md @@ -90,7 +90,7 @@ The Chat component provides field mapping parameters to work with different data | `StatusField` | Field containing message status | `"Status"` | | `IsDeletedField` | Field indicating if message is deleted | `"IsDeleted"` | | `IsPinnedField` | Field indicating if message is pinned | `"IsPinned"` | -| `ReplyТоIdField` | Field containing the ID of replied message | `"ReplyТоId"` | +| `ReplyToIdField` | Field containing the ID of replied message | `"ReplyToId"` | | `SuggestedActionsField` | Field containing suggested actions | `"SuggestedActions"` | ## Dynamic Updates diff --git a/components/chat/quick-actions.md b/components/chat/quick-actions.md index 6482b8243..57e3e7438 100644 --- a/components/chat/quick-actions.md +++ b/components/chat/quick-actions.md @@ -25,7 +25,7 @@ Message suggestions provide users with quick reply options that appear below the Height="700px" TextField="Content" Suggestions="@QuickReplies" - ReplyТоIdField="ReplyToMessageId" + ReplyToIdField="ReplyToMessageId" InputValue="@ChatInputValue" AuthorId="@(2.ToString())" OnSuggestionClick="@HandleSuggestionClick"> diff --git a/components/chat/templates.md b/components/chat/templates.md index 039482132..dfc082a7e 100644 --- a/components/chat/templates.md +++ b/components/chat/templates.md @@ -109,7 +109,7 @@ This allows you to define context menu actions that can be performed on Chat mes Height="700px" TextField="Content" Suggestions="@(new List() { "Suggestion 1", "Suggestion 2" })" - ReplyТоIdField="ReplyToMessageId" + ReplyToIdField="ReplyToMessageId" InputValue="@FirstChatInputValue" EnableSpeechToText="true" AuthorId="@(1.ToString())">