mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-18 23:49:20 +01:00
New composition area with emoji typeahead
This commit is contained in:
committed by
Scott Nonnenberg
parent
e62a1a7812
commit
7b645011c2
@@ -101,12 +101,12 @@ export class ConversationHeader extends React.Component<Props> {
|
||||
|
||||
return (
|
||||
<div className="module-conversation-header__title">
|
||||
{name ? <Emojify text={name} i18n={i18n} /> : null}
|
||||
{name ? <Emojify text={name} /> : null}
|
||||
{name && phoneNumber ? ' · ' : null}
|
||||
{phoneNumber ? phoneNumber : null}{' '}
|
||||
{profileName && !name ? (
|
||||
<span className="module-conversation-header__title__profile-name">
|
||||
~<Emojify text={profileName} i18n={i18n} />
|
||||
~<Emojify text={profileName} />
|
||||
</span>
|
||||
) : null}
|
||||
{isVerified ? ' · ' : null}
|
||||
|
||||
Reference in New Issue
Block a user