mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-22 10:55:15 -04:00
[HTML] Prepend "Message sent: " to message timestamp tooltips
This commit is contained in:
parent
f9ab269b29
commit
de57cd714d
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@
|
||||||
{
|
{
|
||||||
var isPinnedStyle = message.IsPinned ? "chatlog__message--pinned" : null;
|
var isPinnedStyle = message.IsPinned ? "chatlog__message--pinned" : null;
|
||||||
|
|
||||||
<div class="chatlog__message @isPinnedStyle" data-message-id="@message.Id" id="message-@message.Id" title="@FormatDate(message.Timestamp)">
|
<div class="chatlog__message @isPinnedStyle" data-message-id="@message.Id" id="message-@message.Id" title="Message sent: @FormatDate(message.Timestamp)">
|
||||||
@if (!string.IsNullOrWhiteSpace(message.Content) || message.EditedTimestamp is not null)
|
@if (!string.IsNullOrWhiteSpace(message.Content) || message.EditedTimestamp is not null)
|
||||||
{
|
{
|
||||||
<div class="chatlog__content">
|
<div class="chatlog__content">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue