Skip to content
Snippets Groups Projects
Commit 38df06ca authored by Diego Sampaio's avatar Diego Sampaio
Browse files

fix show users list in private group

parent 5259505d
No related branches found
No related tags found
No related merge requests found
......@@ -211,7 +211,7 @@ Template.chatWindowDashboard.helpers
isGroupChat: ->
room = ChatRoom.findOne(this._id, { reactive: false })
return room?.t is 'c'
return room?.t in ['c', 'p']
roomUsers: ->
room = ChatRoom.findOne(this._id, { reactive: false })
......@@ -272,7 +272,7 @@ Template.chatWindowDashboard.helpers
popupEmojiConfig: ->
template = Template.instance()
config =
config =
title: 'Emoji'
collection: emojione.emojioneList
template: 'messagePopupEmoji'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment