Online indicators on PM list
This commit is contained in:
parent
e35eb314f6
commit
1ac2f3f153
|
@ -125,7 +125,7 @@
|
||||||
import UserMenu from './UserMenu.vue';
|
import UserMenu from './UserMenu.vue';
|
||||||
import ImagePreview from './preview/ImagePreview.vue';
|
import ImagePreview from './preview/ImagePreview.vue';
|
||||||
import PrivateConversation = Conversation.PrivateConversation;
|
import PrivateConversation = Conversation.PrivateConversation;
|
||||||
import _ from 'lodash';
|
import * as _ from 'lodash';
|
||||||
|
|
||||||
const unreadClasses = {
|
const unreadClasses = {
|
||||||
[Conversation.UnreadState.None]: '',
|
[Conversation.UnreadState.None]: '',
|
||||||
|
@ -296,7 +296,7 @@
|
||||||
|
|
||||||
_.forEach(
|
_.forEach(
|
||||||
styling[status].icon,
|
styling[status].icon,
|
||||||
(name) => cls[name] = true
|
(name: string) => cls[name] = true
|
||||||
);
|
);
|
||||||
|
|
||||||
return cls;
|
return cls;
|
||||||
|
|
Loading…
Reference in New Issue