Room directory: indicate when there are no results
Fixes https://github.com/vector-im/vector-web/issues/2250
This commit is contained in:
parent
65f14c7d21
commit
2a37a0cb19
|
@ -413,6 +413,10 @@ module.exports = React.createClass({
|
|||
content = <div className="mx_RoomDirectory">
|
||||
<Loader />
|
||||
</div>;
|
||||
} else {
|
||||
const rows = this.getRows();
|
||||
if (rows.length == 0) {
|
||||
content = <i>No rooms to show</i>;
|
||||
} else {
|
||||
const ScrollPanel = sdk.getComponent("structures.ScrollPanel");
|
||||
content = <ScrollPanel ref={this.collectScrollPanel}
|
||||
|
@ -429,6 +433,7 @@ module.exports = React.createClass({
|
|||
</table>
|
||||
</ScrollPanel>;
|
||||
}
|
||||
}
|
||||
|
||||
const SimpleRoomHeader = sdk.getComponent('rooms.SimpleRoomHeader');
|
||||
const NetworkDropdown = sdk.getComponent('directory.NetworkDropdown');
|
||||
|
|
Loading…
Reference in New Issue