This commit is contained in:
dragongoose
2024-07-11 21:55:24 -04:00
parent b79c50911d
commit cdcf477c42
2 changed files with 12 additions and 0 deletions

View File

@ -194,6 +194,10 @@ export default {
<p v-else class="text-sm text-gray-500 italic"> {{ $t("chat.timeout", { username: message.data.username, duration: message.data.duration }) }} </p>
</div>
<div v-else-if="message.type === 'NOTICE'" class="text-contrast inline-flex bg-pink bg-opacity-50 p-1 rounded-md">
<p> {{ message.data.message }} </p>
</div>
<div v-else class="text-contrast">
{{ message }}
</div>