LANCommander/LANCommander.UI/Components/Chat/ChatMessage.razor
Pat Hartl e1c1469614 Fix chat component rendering
- 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
2025-12-30 18:08:20 -06:00

11 lines
No EOL
284 B
Text

@namespace LANCommander.UI.Components
<div class="chat-message" id="@Id">
<Markdown Content="@Content" />
</div>
@code {
[Parameter] public Guid Id { get; set; }
[Parameter] public string Content { get; set; }
[Parameter] public DateTimeOffset SentOn { get; set; }
}