1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-20 16:22:28 +03:00

Merge pull request #2481 from matrix-org/bwindels/showroomsandpeoplewhenempty

Fix: show rooms and people section when empty while filtering
This commit is contained in:
Bruno Windels
2019-01-23 09:39:17 +00:00
committed by GitHub

View File

@@ -593,7 +593,7 @@ module.exports = React.createClass({
subListsProps = subListsProps.filter((props => {
const len = props.list.length + (props.extraTiles ? props.extraTiles.length : 0);
return len !== 0 || (props.onAddRoom && !this.props.searchFilter);
return len !== 0 || props.onAddRoom;
}));
return subListsProps.reduce((components, props, i) => {