Add verified badge to Notes to Self
This commit is contained in:
parent
371c73377c
commit
c571305d8a
9 changed files with 40 additions and 19 deletions
|
@ -12,6 +12,7 @@ export type PropsType = {
|
|||
contactNameColor?: ContactNameColorType;
|
||||
firstName?: string;
|
||||
isSignalConversation?: boolean;
|
||||
isMe?: boolean;
|
||||
module?: string;
|
||||
preferFirstName?: boolean;
|
||||
title: string;
|
||||
|
@ -21,6 +22,7 @@ export function ContactName({
|
|||
contactNameColor,
|
||||
firstName,
|
||||
isSignalConversation,
|
||||
isMe,
|
||||
module,
|
||||
preferFirstName,
|
||||
title,
|
||||
|
@ -43,8 +45,8 @@ export function ContactName({
|
|||
dir="auto"
|
||||
>
|
||||
<Emojify text={text} />
|
||||
{isSignalConversation && (
|
||||
<span className="StoryListItem__signal-official" />
|
||||
{(isSignalConversation || isMe) && (
|
||||
<span className="ContactModal__official-badge" />
|
||||
)}
|
||||
</span>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue