mirror of https://github.com/vector-im/riot-web
Fix indentation in MessagePanel
parent
3beb70814c
commit
74189b2164
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue