From d930c37cb480db352ee25c603035a91206d974c5 Mon Sep 17 00:00:00 2001 From: Dimo Dimov <961014+dimodi@users.noreply.github.com> Date: Wed, 1 Oct 2025 14:25:16 +0300 Subject: [PATCH] docs(Chat): Add missing parameter --- components/chat/data-binding.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/chat/data-binding.md b/components/chat/data-binding.md index 2590f851a..64a5ea178 100644 --- a/components/chat/data-binding.md +++ b/components/chat/data-binding.md @@ -95,10 +95,13 @@ To bind the Chat to data, set its `Data` parameter to an `IEnumerable` where The Chat component provides field mapping parameters to work with different data models. Use these parameters to specify which properties in your data model correspond to Chat features: +@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout) + | Parameter | Description | Default Value | |-----------|-------------|---------------| | `TextField` | Field containing message text content | `"Text"` | | `AuthorIdField` | Field containing the author/user ID | `"AuthorId"` | +| `AuthorImageUrlField` | Field containing the author/user avatar image | `"AuthorImageUrl"` | | `AuthorNameField` | Field containing the author display name | `"AuthorName"` | | `TimestampField` | Field containing the message timestamp | `"Timestamp"` | | `IdField` | Field containing the unique message ID | `"Id"` |