Merge pull request #671 from matrix-org/dbkr/fix_read_receipt_unhide

Fix expanding/unexapnding read receipts
This commit is contained in:
Richard van der Hoff 2017-02-02 17:45:04 +00:00 committed by GitHub
commit e9a53a8957
2 changed files with 9 additions and 8 deletions

View file

@ -159,13 +159,14 @@ module.exports = React.createClass({
} }
if (onClick != null) { if (onClick != null) {
return ( return (
<AccessibleButton className="mx_BaseAvatar" onClick={onClick}> <AccessibleButton className="mx_BaseAvatar mx_BaseAvatar_image"
<img className="mx_BaseAvatar_image" src={imageUrl} element='img'
onError={this.onError} src={imageUrl}
width={width} height={height} onClick={onClick}
title={title} alt="" onError={this.onError}
{...otherProps} /> width={width} height={height}
</AccessibleButton> title={title} alt=""
{...otherProps} />
); );
} else { } else {
return ( return (

View file

@ -192,9 +192,9 @@ module.exports = React.createClass({
width={14} height={14} resizeMethod="crop" width={14} height={14} resizeMethod="crop"
style={style} style={style}
title={title} title={title}
onClick={this.props.onClick}
/> />
</Velociraptor> </Velociraptor>
); );
/* onClick={this.props.onClick} */
}, },
}); });