Fix indentation in MessagePanel

This commit is contained in:
J. Ryan Stinnett 2019-05-07 16:05:56 +01:00
parent 3beb70814c
commit 74189b2164

View file

@ -513,8 +513,10 @@ module.exports = React.createClass({
ret.push( ret.push(
<li key={eventId} <li key={eventId}
ref={this._collectEventNode.bind(this, eventId)} ref={this._collectEventNode.bind(this, eventId)}
data-scroll-tokens={scrollToken}> data-scroll-tokens={scrollToken}
<EventTile mxEvent={mxEv} continuation={continuation} >
<EventTile mxEvent={mxEv}
continuation={continuation}
isRedacted={mxEv.isRedacted()} isRedacted={mxEv.isRedacted()}
onHeightChanged={this._onHeightChanged} onHeightChanged={this._onHeightChanged}
readReceipts={readReceipts} readReceipts={readReceipts}
@ -525,7 +527,9 @@ module.exports = React.createClass({
tileShape={this.props.tileShape} tileShape={this.props.tileShape}
isTwelveHour={this.props.isTwelveHour} isTwelveHour={this.props.isTwelveHour}
permalinkCreator={this.props.permalinkCreator} permalinkCreator={this.props.permalinkCreator}
last={last} isSelectedEvent={highlight} /> last={last}
isSelectedEvent={highlight}
/>
</li>, </li>,
); );