From 26813666fc70aaa9836d3f460e79ef9d6a5e359a Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 21 Jan 2020 11:51:47 +1100 Subject: [PATCH] show timestamp and last message in conversationlistitem --- ts/components/ConversationListItem.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/ts/components/ConversationListItem.tsx b/ts/components/ConversationListItem.tsx index ee8b2bf60..0ca74ea24 100644 --- a/ts/components/ConversationListItem.tsx +++ b/ts/components/ConversationListItem.tsx @@ -146,7 +146,7 @@ export class ConversationListItem extends React.PureComponent { {isMe ? i18n('noteToSelf') : this.renderUser()} {hasReceivedFriendRequest || this.renderUnread()} - {!isFriend && ( + {isFriend && (
{ isTyping, unreadCount, i18n, - isFriend, isPendingFriendRequest, } = this.props; - if (isFriend) { - return null; - } - if (!lastMessage && !isTyping) { return null; }