Fix inconsistent CSS class usage for forwarded audio attachments

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
farley128 2025-12-31 12:19:21 -05:00 committed by GitHub
parent bfef222ae2
commit bed2ed9f85
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -302,7 +302,7 @@
}
else if (attachment.IsAudio)
{
<audio class="chatlog__attachment-media" controls>
<audio class="chatlog__forwarded-attachment" controls>
<source src="@await ResolveAssetUrlAsync(attachment.Url)" alt="@(attachment.Description ?? "Audio attachment")" title="Audio: @attachment.FileName (@attachment.FileSize)">
</audio>
}