fix formatting
This commit is contained in:
parent
c4fc2d7208
commit
53be6c8e89
3 changed files with 6 additions and 5 deletions
|
@ -195,7 +195,7 @@ export function ConversationHero({
|
||||||
title={title}
|
title={title}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{isMe && (<span className="ContactModal__official-badge__large" />)}
|
{isMe && <span className="ContactModal__official-badge__large" />}
|
||||||
</h1>
|
</h1>
|
||||||
{about && !isMe && (
|
{about && !isMe && (
|
||||||
<div className="module-about__container">
|
<div className="module-about__container">
|
||||||
|
|
|
@ -107,7 +107,7 @@ export function ConversationDetailsHeader({
|
||||||
<div>
|
<div>
|
||||||
<div className={bem('title')}>
|
<div className={bem('title')}>
|
||||||
<Emojify text={isMe ? i18n('noteToSelf') : conversation.title} />
|
<Emojify text={isMe ? i18n('noteToSelf') : conversation.title} />
|
||||||
{isMe && (<span className="ContactModal__official-badge__large" />)}
|
{isMe && <span className="ContactModal__official-badge__large" />}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -76,7 +76,8 @@ export const ContactCheckbox: FunctionComponent<PropsType> = React.memo(
|
||||||
const disabled = Boolean(disabledReason);
|
const disabled = Boolean(disabledReason);
|
||||||
|
|
||||||
const headerName = isMe ? (
|
const headerName = isMe ? (
|
||||||
<ContactName module={HEADER_CONTACT_NAME_CLASS_NAME}
|
<ContactName
|
||||||
|
module={HEADER_CONTACT_NAME_CLASS_NAME}
|
||||||
title={i18n('noteToSelf')}
|
title={i18n('noteToSelf')}
|
||||||
isMe={isMe}
|
isMe={isMe}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue