Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion components/chat/data-binding.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion components/chat/quick-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down
2 changes: 1 addition & 1 deletion components/chat/templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<string>() { "Suggestion 1", "Suggestion 2" })"
ReplyТоIdField="ReplyToMessageId"
ReplyToIdField="ReplyToMessageId"
InputValue="@FirstChatInputValue"
EnableSpeechToText="true"
AuthorId="@(1.ToString())">
Expand Down