Online indicators on PM list

This commit is contained in:
Mr. Stallion 2020-03-17 17:40:24 -05:00
parent e35eb314f6
commit 1ac2f3f153
1 changed files with 2 additions and 2 deletions

View File

@ -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;