From 1ac2f3f15336726100ff0abb0b3dafe0851dfe94 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Tue, 17 Mar 2020 17:40:24 -0500 Subject: [PATCH] Online indicators on PM list --- chat/ChatView.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chat/ChatView.vue b/chat/ChatView.vue index b5293c6..a60c31a 100644 --- a/chat/ChatView.vue +++ b/chat/ChatView.vue @@ -125,7 +125,7 @@ import UserMenu from './UserMenu.vue'; import ImagePreview from './preview/ImagePreview.vue'; import PrivateConversation = Conversation.PrivateConversation; - import _ from 'lodash'; + import * as _ from 'lodash'; const unreadClasses = { [Conversation.UnreadState.None]: '', @@ -296,7 +296,7 @@ _.forEach( styling[status].icon, - (name) => cls[name] = true + (name: string) => cls[name] = true ); return cls;