From e35eb314f61b602079098799f94215550eebacb2 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Tue, 17 Mar 2020 17:34:02 -0500 Subject: [PATCH] Online indicators on PM list --- chat/ChatView.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chat/ChatView.vue b/chat/ChatView.vue index 7bd0bfb..b5293c6 100644 --- a/chat/ChatView.vue +++ b/chat/ChatView.vue @@ -125,6 +125,7 @@ import UserMenu from './UserMenu.vue'; import ImagePreview from './preview/ImagePreview.vue'; import PrivateConversation = Conversation.PrivateConversation; + import _ from 'lodash'; const unreadClasses = { [Conversation.UnreadState.None]: '', @@ -293,7 +294,7 @@ const cls = { [styling[status].color]: true }; - _.each( + _.forEach( styling[status].icon, (name) => cls[name] = true );