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); | ||||
|         } | ||||
|         ret.push( | ||||
|                 <li key={eventId} | ||||
|                         ref={this._collectEventNode.bind(this, eventId)} | ||||
|                         data-scroll-tokens={scrollToken}> | ||||
|                     <EventTile mxEvent={mxEv} continuation={continuation} | ||||
|                         isRedacted={mxEv.isRedacted()} | ||||
|                         onHeightChanged={this._onHeightChanged} | ||||
|                         readReceipts={readReceipts} | ||||
|                         readReceiptMap={this._readReceiptMap} | ||||
|                         showUrlPreview={this.props.showUrlPreview} | ||||
|                         checkUnmounting={this._isUnmounting} | ||||
|                         eventSendStatus={mxEv.status} | ||||
|                         tileShape={this.props.tileShape} | ||||
|                         isTwelveHour={this.props.isTwelveHour} | ||||
|                         permalinkCreator={this.props.permalinkCreator} | ||||
|                         last={last} isSelectedEvent={highlight} /> | ||||
|                 </li>, | ||||
|             <li key={eventId} | ||||
|                 ref={this._collectEventNode.bind(this, eventId)} | ||||
|                 data-scroll-tokens={scrollToken} | ||||
|             > | ||||
|                 <EventTile mxEvent={mxEv} | ||||
|                     continuation={continuation} | ||||
|                     isRedacted={mxEv.isRedacted()} | ||||
|                     onHeightChanged={this._onHeightChanged} | ||||
|                     readReceipts={readReceipts} | ||||
|                     readReceiptMap={this._readReceiptMap} | ||||
|                     showUrlPreview={this.props.showUrlPreview} | ||||
|                     checkUnmounting={this._isUnmounting} | ||||
|                     eventSendStatus={mxEv.status} | ||||
|                     tileShape={this.props.tileShape} | ||||
|                     isTwelveHour={this.props.isTwelveHour} | ||||
|                     permalinkCreator={this.props.permalinkCreator} | ||||
|                     last={last} | ||||
|                     isSelectedEvent={highlight} | ||||
|                 /> | ||||
|             </li>, | ||||
|         ); | ||||
| 
 | ||||
|         return ret; | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 J. Ryan Stinnett
						J. Ryan Stinnett