1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-14 19:02:33 +03:00

Hide empty tips if collapsed

This commit is contained in:
David Baker
2017-05-04 18:08:04 +01:00
committed by Luke Barnard
parent 99efbbee5e
commit dc2274df54

View File

@@ -511,6 +511,12 @@ module.exports = React.createClass({
},
_getEmptyContent: function(section) {
const RoomDropTarget = sdk.getComponent('rooms.RoomDropTarget');
if (this.props.collapsed) {
return <RoomDropTarget label="" />;
}
const RoleButton = sdk.getComponent('elements.RoleButton');
if (this.state.totalRoomCount === 0) {
const TintableSvg = sdk.getComponent('elements.TintableSvg');
@@ -531,7 +537,6 @@ module.exports = React.createClass({
</div>;
}
}
const RoomDropTarget = sdk.getComponent('rooms.RoomDropTarget');
const labelText = 'Drop here to ' + (VERBS[section] || 'tag ' + section);