Merge pull request #684 from matrix-org/luke/rts-thread-teamToken

Thread teamToken through to LeftPanel for "Home" button
This commit is contained in:
David Baker 2017-02-10 10:42:59 +00:00 committed by GitHub
commit 8bd7d90ca2

View file

@ -232,7 +232,12 @@ export default React.createClass({
<div className='mx_MatrixChat_wrapper'>
{topBar}
<div className={bodyClasses}>
<LeftPanel selectedRoom={this.props.currentRoomId} collapsed={this.props.collapse_lhs || false} opacity={this.props.sideOpacity}/>
<LeftPanel
selectedRoom={this.props.currentRoomId}
collapsed={this.props.collapse_lhs || false}
opacity={this.props.sideOpacity}
teamToken={this.props.teamToken}
/>
<main className='mx_MatrixChat_middlePanel'>
{page_element}
</main>