Fix story group replies rendering

This commit is contained in:
Josh Perez 2022-08-25 12:10:56 -04:00 committed by GitHub
parent afc14aedd1
commit eadef45290
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 18 additions and 14 deletions

View file

@ -858,6 +858,7 @@ export class Message extends React.PureComponent<Props, State> {
const {
author,
contactNameColor,
i18n,
isSticker,
isTapToView,
isTapToViewExpired,
@ -879,7 +880,7 @@ export class Message extends React.PureComponent<Props, State> {
<div className={moduleName}>
<ContactName
contactNameColor={contactNameColor}
title={author.title}
title={author.isMe ? i18n('you') : author.title}
module={moduleName}
/>
</div>