- Load thread after creation - Change thread list from DataList to Flex - Move unread badge to right side of chat thread list item - Fix avatar rerendering after another message is added to message group - Add styling to thread list - Change message input to support markdown and add markdown rendering for message contents
10 lines
No EOL
203 B
Text
10 lines
No EOL
203 B
Text
@namespace LANCommander.UI.Components
|
|
|
|
@if (!String.IsNullOrWhiteSpace(Content))
|
|
{
|
|
@((MarkupString)@Markdig.Markdown.ToHtml(Content))
|
|
}
|
|
|
|
@code {
|
|
[Parameter] public string? Content { get; set; }
|
|
} |