third try to fix this little bug

This commit is contained in:
Connor Turland 2017-02-10 12:02:05 -05:00 committed by GitHub
parent 559ad230ce
commit a647d80efa

View file

@ -82,7 +82,7 @@ class MapCard extends Component {
render = () => {
const { map, mobile, juntoState, currentUser, onRequest, onStar } = this.props
const hasMap = juntoState.liveMaps[map.id] && values(juntoState.liveMaps[map.id]).length
const hasMap = (juntoState.liveMaps[map.id] && values(juntoState.liveMaps[map.id]).length) || null
const realtimeMap = juntoState.liveMaps[map.id]
const hasConversation = hasMap && find(values(realtimeMap), v => v === IN_CONVERSATION)
const hasMapper = hasMap && !hasConversation