diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 3144c08d4..ec11580a8 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -1398,17 +1398,10 @@ } } }, -<<<<<<< HEAD - "audioNotificationDescription": { - "message": "Play audio notification", - "description": "Description for audio notification setting" - }, "safetyNumber": { "message": "Safety Number", "description": "Title to the safety number view" }, -======= ->>>>>>> upstream/clearnet "safetyNumberChanged": { "message": "Safety Number has changed", "description": "A notification shown in the conversation when a contact reinstalls" diff --git a/ts/components/conversation/ContactName.tsx b/ts/components/conversation/ContactName.tsx index ce6231f67..42465489a 100644 --- a/ts/components/conversation/ContactName.tsx +++ b/ts/components/conversation/ContactName.tsx @@ -28,7 +28,7 @@ export class ContactName extends React.Component { const prefix = module ? module : 'module-contact-name'; const title = name ? name : phoneNumber; - const shouldShowProfile = Boolean(profileName && !profileName); + const shouldShowProfile = Boolean(profileName && !name); const styles = (boldProfileName ? { diff --git a/ts/components/conversation/ConversationHeader.tsx b/ts/components/conversation/ConversationHeader.tsx index 26829e0aa..215929462 100644 --- a/ts/components/conversation/ConversationHeader.tsx +++ b/ts/components/conversation/ConversationHeader.tsx @@ -35,7 +35,6 @@ interface Props { isClosable?: boolean; isGroup: boolean; isPrivate: boolean; - isArchived: boolean; isPublic: boolean; isRss: boolean; amMod: boolean; diff --git a/ts/components/session/conversation/SessionConversation.tsx b/ts/components/session/conversation/SessionConversation.tsx index 86f0d6824..d5783014b 100644 --- a/ts/components/session/conversation/SessionConversation.tsx +++ b/ts/components/session/conversation/SessionConversation.tsx @@ -495,6 +495,7 @@ export class SessionConversation extends React.Component { isClosable: conversation.isClosable(), isBlocked: conversation.isBlocked(), isGroup: !conversation.isPrivate(), + isPrivate: conversation.isPrivate(), isOnline: conversation.isOnline(), isPublic: conversation.isPublic(), isRss: conversation.isRss(),