Merge pull request #6141 from matrix-org/jryans/repair-event-status

Repair event status position in timeline
pull/21833/head
J. Ryan Stinnett 2021-06-04 14:16:59 +01:00 committed by GitHub
commit abfe6d85a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 6 deletions

View File

@ -1340,11 +1340,15 @@ class SentReceipt extends React.PureComponent<ISentReceiptProps, ISentReceiptSta
tooltip = <Tooltip className="mx_EventTile_readAvatars_receiptTooltip" label={label} yOffset={20} />; tooltip = <Tooltip className="mx_EventTile_readAvatars_receiptTooltip" label={label} yOffset={20} />;
} }
return <span className="mx_EventTile_readAvatars"> return (
<span className={receiptClasses} onMouseEnter={this.onHoverStart} onMouseLeave={this.onHoverEnd}> <div className="mx_EventTile_msgOption">
{nonCssBadge} <span className="mx_EventTile_readAvatars">
{tooltip} <span className={receiptClasses} onMouseEnter={this.onHoverStart} onMouseLeave={this.onHoverEnd}>
</span> {nonCssBadge}
</span>; {tooltip}
</span>
</span>
</div>
);
} }
} }