Gab-Social/app/javascript/gabsocial/features/chat_conversation_mutes.js
mgabdev 698e2aa42e Fixed issue with chat mutes, blocks, requests not showing up on mobile
• Fixed:
- issue with chat mutes, blocks, requests not showing up on mobile
2021-01-05 11:34:02 -05:00

23 lines
839 B
JavaScript

import React from 'react'
import PropTypes from 'prop-types'
import BlockHeading from '../components/block_heading'
import ChatConversationsList from './messages/components/chat_conversations_list'
class ChatConversationMutes extends React.PureComponent {
render() {
return (
<div className={[_s.d, _s.w100PC, _s.flexGrow1, _s.overflowHidden, _s.boxShadowNone].join(' ')}>
<div className={[_s.d, _s.h60PX, _s.w100PC, _s.px10, _s.py10, _s.borderBottom1PX, _s.borderColorSecondary].join(' ')}>
<BlockHeading title={'Muted Chat Conversations'} />
</div>
<div className={[_s.d, _s.posAbs, _s.top60PX, _s.left0, _s.right0, _s.bottom0, _s.overflowYScroll].join(' ')}>
<ChatConversationsList source='muted' />
</div>
</div>
)
}
}
export default ChatConversationMutes