Merge branch 'irc-colours' into fallback-server-icons

This commit is contained in:
Twig 2025-07-14 19:51:12 +02:00
commit bbc822604f
No known key found for this signature in database
6 changed files with 29 additions and 2 deletions

View file

@ -40,7 +40,7 @@
</div>
<div class="message-data">
<div class="message-metadata">
<span class="message-author-username" tabindex="0">
<span class="message-author-username" tabindex="0" :style="`color: ${props.authorColor}`">
{{ author?.display_name || author?.username }}
</span>
<span class="message-date" :title="date.toString()">
@ -75,6 +75,7 @@ import { parse } from 'marked';
import type { MessageProps } from '~/types/props';
import MessageMedia from './MessageMedia.vue';
import MessageReply from './UserInterface/MessageReply.vue';
import generateIrcColor from '~/utils/generateIrcColor';
const props = defineProps<MessageProps>();