Add a 'No results' marker when there are no search results at all.
Also reword the 'no more results' marker.
This commit is contained in:
parent
765e5bdeb1
commit
7c285f9ad0
1 changed files with 11 additions and 4 deletions
|
@ -642,10 +642,17 @@ module.exports = React.createClass({
|
||||||
var lastRoomId;
|
var lastRoomId;
|
||||||
|
|
||||||
if (this.state.searchCanPaginate === false) {
|
if (this.state.searchCanPaginate === false) {
|
||||||
ret.push(<li key="search-top-marker">
|
if (this.state.searchResults.length == 0) {
|
||||||
<h2 className="mx_RoomView_topMarker">End of search results</h2>
|
ret.push(<li key="search-top-marker">
|
||||||
</li>
|
<h2 className="mx_RoomView_topMarker">No results</h2>
|
||||||
);
|
</li>
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
ret.push(<li key="search-top-marker">
|
||||||
|
<h2 className="mx_RoomView_topMarker">No more results</h2>
|
||||||
|
</li>
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (var i = this.state.searchResults.length - 1; i >= 0; i--) {
|
for (var i = this.state.searchResults.length - 1; i >= 0; i--) {
|
||||||
|
|
Loading…
Reference in a new issue