Fix indentation in MessagePanel

pull/21833/head
J. Ryan Stinnett 2019-05-07 16:05:56 +01:00
parent 3beb70814c
commit 74189b2164
1 changed files with 20 additions and 16 deletions

View File

@ -511,22 +511,26 @@ module.exports = React.createClass({
readReceipts = this._getReadReceiptsForEvent(mxEv); readReceipts = this._getReadReceiptsForEvent(mxEv);
} }
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} >
isRedacted={mxEv.isRedacted()} <EventTile mxEvent={mxEv}
onHeightChanged={this._onHeightChanged} continuation={continuation}
readReceipts={readReceipts} isRedacted={mxEv.isRedacted()}
readReceiptMap={this._readReceiptMap} onHeightChanged={this._onHeightChanged}
showUrlPreview={this.props.showUrlPreview} readReceipts={readReceipts}
checkUnmounting={this._isUnmounting} readReceiptMap={this._readReceiptMap}
eventSendStatus={mxEv.status} showUrlPreview={this.props.showUrlPreview}
tileShape={this.props.tileShape} checkUnmounting={this._isUnmounting}
isTwelveHour={this.props.isTwelveHour} eventSendStatus={mxEv.status}
permalinkCreator={this.props.permalinkCreator} tileShape={this.props.tileShape}
last={last} isSelectedEvent={highlight} /> isTwelveHour={this.props.isTwelveHour}
</li>, permalinkCreator={this.props.permalinkCreator}
last={last}
isSelectedEvent={highlight}
/>
</li>,
); );
return ret; return ret;