fix merge issue

pull/1380/head
Audric Ackermann 5 years ago
parent 3945c6b208
commit 1f9aff5d1d
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -1398,17 +1398,10 @@
} }
} }
}, },
<<<<<<< HEAD
"audioNotificationDescription": {
"message": "Play audio notification",
"description": "Description for audio notification setting"
},
"safetyNumber": { "safetyNumber": {
"message": "Safety Number", "message": "Safety Number",
"description": "Title to the safety number view" "description": "Title to the safety number view"
}, },
=======
>>>>>>> upstream/clearnet
"safetyNumberChanged": { "safetyNumberChanged": {
"message": "Safety Number has changed", "message": "Safety Number has changed",
"description": "A notification shown in the conversation when a contact reinstalls" "description": "A notification shown in the conversation when a contact reinstalls"

@ -28,7 +28,7 @@ export class ContactName extends React.Component<Props> {
const prefix = module ? module : 'module-contact-name'; const prefix = module ? module : 'module-contact-name';
const title = name ? name : phoneNumber; const title = name ? name : phoneNumber;
const shouldShowProfile = Boolean(profileName && !profileName); const shouldShowProfile = Boolean(profileName && !name);
const styles = (boldProfileName const styles = (boldProfileName
? { ? {

@ -35,7 +35,6 @@ interface Props {
isClosable?: boolean; isClosable?: boolean;
isGroup: boolean; isGroup: boolean;
isPrivate: boolean; isPrivate: boolean;
isArchived: boolean;
isPublic: boolean; isPublic: boolean;
isRss: boolean; isRss: boolean;
amMod: boolean; amMod: boolean;

@ -495,6 +495,7 @@ export class SessionConversation extends React.Component<any, State> {
isClosable: conversation.isClosable(), isClosable: conversation.isClosable(),
isBlocked: conversation.isBlocked(), isBlocked: conversation.isBlocked(),
isGroup: !conversation.isPrivate(), isGroup: !conversation.isPrivate(),
isPrivate: conversation.isPrivate(),
isOnline: conversation.isOnline(), isOnline: conversation.isOnline(),
isPublic: conversation.isPublic(), isPublic: conversation.isPublic(),
isRss: conversation.isRss(), isRss: conversation.isRss(),

Loading…
Cancel
Save