Online indicators on PM list
This commit is contained in:
parent
3746dc08de
commit
e35eb314f6
|
@ -125,6 +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';
|
||||||
|
|
||||||
const unreadClasses = {
|
const unreadClasses = {
|
||||||
[Conversation.UnreadState.None]: '',
|
[Conversation.UnreadState.None]: '',
|
||||||
|
@ -293,7 +294,7 @@
|
||||||
|
|
||||||
const cls = { [styling[status].color]: true };
|
const cls = { [styling[status].color]: true };
|
||||||
|
|
||||||
_.each(
|
_.forEach(
|
||||||
styling[status].icon,
|
styling[status].icon,
|
||||||
(name) => cls[name] = true
|
(name) => cls[name] = true
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue