diff --git a/app/soapbox/features/chats/components/chat_list.js b/app/soapbox/features/chats/components/chat_list.js index e2446e07f..daac2a07c 100644 --- a/app/soapbox/features/chats/components/chat_list.js +++ b/app/soapbox/features/chats/components/chat_list.js @@ -4,6 +4,7 @@ import PropTypes from 'prop-types'; import { injectIntl, FormattedMessage } from 'react-intl'; import ImmutablePureComponent from 'react-immutable-pure-component'; import { fetchChats } from 'soapbox/actions/chats'; +import Account from 'soapbox/components/account'; const mapStateToProps = state => ({ chats: state.get('chats'), @@ -33,7 +34,7 @@ class ChatList extends ImmutablePureComponent {
{chats.toList().map(chat => (
- {chat.getIn(['account', 'acct'])} +
))}
diff --git a/app/styles/chats.scss b/app/styles/chats.scss index 60d1355e2..7cd165b17 100644 --- a/app/styles/chats.scss +++ b/app/styles/chats.scss @@ -3,6 +3,7 @@ bottom: 0; right: 20px; width: 265px; + z-index: 99999; &__header { background: var(--brand-color);