mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 11:15:53 +03:00
fix mx_Event containment rules and empty read avatar row
This commit is contained in:
parent
430cfa9c06
commit
a34f8a29f4
2 changed files with 1 additions and 2 deletions
|
@ -222,7 +222,6 @@ limitations under the License.
|
|||
|
||||
.mx_RoomView_MessageList li {
|
||||
clear: both;
|
||||
contain: content;
|
||||
}
|
||||
|
||||
li.mx_RoomView_myReadMarker_container {
|
||||
|
|
|
@ -631,7 +631,7 @@ export default class EventTile extends React.Component<IProps, IState> {
|
|||
|
||||
// return early if there are no read receipts
|
||||
if (!this.props.readReceipts || this.props.readReceipts.length === 0) {
|
||||
return (<span className="mx_EventTile_readAvatars" />);
|
||||
return null;
|
||||
}
|
||||
|
||||
const ReadReceiptMarker = sdk.getComponent('rooms.ReadReceiptMarker');
|
||||
|
|
Loading…
Reference in a new issue