Reactions: Go directly to all tab, show 'You' for current user
This commit is contained in:
parent
4d6dafccfb
commit
faa2b13026
4 changed files with 20 additions and 25 deletions
|
@ -158,12 +158,16 @@ export const ReactionViewer = React.forwardRef<HTMLDivElement, Props>(
|
|||
/>
|
||||
</div>
|
||||
<div className="module-reaction-viewer__body__row__name">
|
||||
<ContactName
|
||||
module="module-reaction-viewer__body__row__name__contact-name"
|
||||
name={from.name}
|
||||
profileName={from.profileName}
|
||||
phoneNumber={from.phoneNumber}
|
||||
/>
|
||||
{from.isMe ? (
|
||||
i18n('you')
|
||||
) : (
|
||||
<ContactName
|
||||
module="module-reaction-viewer__body__row__name__contact-name"
|
||||
name={from.name}
|
||||
profileName={from.profileName}
|
||||
phoneNumber={from.phoneNumber}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
<div className="module-reaction-viewer__body__row__emoji">
|
||||
<Emoji size={18} emoji={emoji} />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue