Fix typing bubble in group chats
This commit is contained in:
parent
1b38db2d79
commit
1268945840
1 changed files with 26 additions and 22 deletions
|
@ -39,6 +39,7 @@ export class TypingBubble extends React.PureComponent<Props> {
|
|||
}
|
||||
|
||||
return (
|
||||
<div className="module-message__author-avatar-container">
|
||||
<div className="module-message__author-avatar">
|
||||
<Avatar
|
||||
avatarPath={avatarPath}
|
||||
|
@ -52,6 +53,7 @@ export class TypingBubble extends React.PureComponent<Props> {
|
|||
size={28}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -67,6 +69,8 @@ export class TypingBubble extends React.PureComponent<Props> {
|
|||
isGroup ? 'module-message--group' : null
|
||||
)}
|
||||
>
|
||||
{this.renderAvatar()}
|
||||
<div className="module-message__container-outer">
|
||||
<div
|
||||
className={classNames(
|
||||
'module-message__container',
|
||||
|
@ -77,7 +81,7 @@ export class TypingBubble extends React.PureComponent<Props> {
|
|||
<div className="module-message__typing-container">
|
||||
<TypingAnimation color="light" i18n={i18n} />
|
||||
</div>
|
||||
{this.renderAvatar()}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue