From a3229f1cdf5571ded500fc88bc64f94605cb1834 Mon Sep 17 00:00:00 2001 From: Anthony Atkinson Date: Wed, 5 May 2021 21:51:35 -0400 Subject: [PATCH] classes for unread and highlight --- client/components/ChannelWrapper.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/components/ChannelWrapper.vue b/client/components/ChannelWrapper.vue index c979007f..35f9e656 100644 --- a/client/components/ChannelWrapper.vue +++ b/client/components/ChannelWrapper.vue @@ -8,6 +8,8 @@ {active: active}, {'parted-channel': channel.type === 'channel' && channel.state === 0}, {'has-draft': channel.pendingMessage}, + {'has-unread': channel.unread}, + {'has-highlight': channel.highlight}, { 'not-secure': channel.type === 'lobby' && network.status.connected && !network.status.secure,