Online indicators on PM list

This commit is contained in:
Mr. Stallion 2020-03-17 17:34:02 -05:00
parent 3746dc08de
commit e35eb314f6
1 changed files with 2 additions and 1 deletions

View File

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