show rooms and people section when empty while filtering

This commit is contained in:
Bruno Windels 2019-01-22 17:54:04 +01:00
parent 3c8bd3fc78
commit 7d4165802c

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) => {