diff --git a/ts/components/ConversationListItem.tsx b/ts/components/ConversationListItem.tsx index 8827853a4..0a3868527 100644 --- a/ts/components/ConversationListItem.tsx +++ b/ts/components/ConversationListItem.tsx @@ -23,6 +23,7 @@ export type PropsData = { avatarPath?: string; isMe: boolean; isPublic?: boolean; + isRss?: boolean; isClosable?: boolean; lastUpdated: number; @@ -176,6 +177,7 @@ export class ConversationListItem extends React.PureComponent { isBlocked, isMe, isClosable, + isRss, isPublic, hasNickname, onDeleteContact, @@ -192,18 +194,18 @@ export class ConversationListItem extends React.PureComponent { return ( - {!isPublic && !isMe ? ( + {!isPublic && !isRss && !isMe ? ( {blockTitle} ) : null} - {!isPublic && !isMe ? ( + {!isPublic && !isRss && !isMe ? ( {i18n('changeNickname')} ) : null} - {!isPublic && !isMe && hasNickname ? ( + {!isPublic && !isRss && !isMe && hasNickname ? ( {i18n('clearNickname')} ) : null} - {!isPublic ? ( + {!isPublic && !isRss ? ( {i18n('copyPublicKey')} ) : null} {i18n('deleteMessages')}