mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Fix RoomSubList (RoomSubListHeader was removed)
This commit is contained in:
parent
67ecd94b4a
commit
e3342e36c0
@ -555,20 +555,7 @@ var RoomSubList = React.createClass({
|
|||||||
|
|
||||||
return connectDropTarget(
|
return connectDropTarget(
|
||||||
<div>
|
<div>
|
||||||
<RoomSubListHeader
|
{ this._getHeaderJsx() }
|
||||||
ref='header'
|
|
||||||
label={ this.props.label }
|
|
||||||
tagName={ this.props.tagName }
|
|
||||||
roomCount={ roomCount }
|
|
||||||
collapsed={ this.props.collapsed }
|
|
||||||
hidden={ this.state.hidden }
|
|
||||||
incomingCall={ this.props.incomingCall }
|
|
||||||
isIncomingCallRoom={ isIncomingCallRoom }
|
|
||||||
roomNotificationCount={ this.roomNotificationCount() }
|
|
||||||
onClick={ this.onClick }
|
|
||||||
onHeaderClick={ this.props.onHeaderClick }
|
|
||||||
headerItems={this.props.headerItems}
|
|
||||||
/>
|
|
||||||
{ subList }
|
{ subList }
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
@ -577,21 +564,7 @@ var RoomSubList = React.createClass({
|
|||||||
var Loader = sdk.getComponent("elements.Spinner");
|
var Loader = sdk.getComponent("elements.Spinner");
|
||||||
return (
|
return (
|
||||||
<div className="mx_RoomSubList">
|
<div className="mx_RoomSubList">
|
||||||
{ this.props.alwaysShowHeader ?
|
{ this.props.alwaysShowHeader ? this._getHeaderJsx() : undefined }
|
||||||
<RoomSubListHeader
|
|
||||||
ref='header'
|
|
||||||
label={ this.props.label }
|
|
||||||
tagName={ this.props.tagName }
|
|
||||||
roomCount={ roomCount }
|
|
||||||
collapsed={ this.props.collapsed }
|
|
||||||
hidden={ this.state.hidden }
|
|
||||||
isIncomingCallRoom={ isIncomingCallRoom }
|
|
||||||
roomNotificationCount={ this.roomNotificationCount() }
|
|
||||||
onClick={ this.onClick }
|
|
||||||
onHeaderClick={ this.props.onHeaderClick }
|
|
||||||
headerItems={this.props.headerItems}
|
|
||||||
/>
|
|
||||||
: undefined }
|
|
||||||
{ (this.props.showSpinner && !this.state.hidden) ? <Loader /> : undefined }
|
{ (this.props.showSpinner && !this.state.hidden) ? <Loader /> : undefined }
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user