Make search say No more results when there are current results
This commit is contained in:
parent
f3254129e1
commit
bd3f71b030
2 changed files with 2 additions and 1 deletions
|
@ -91,7 +91,7 @@
|
|||
class="search-result-heading"
|
||||
>
|
||||
<h4>
|
||||
{{ $t('search.no_results') }}
|
||||
{{ visibleStatuses.length === 0 ? $t('search.no_results') : $t('search.no_more_results') }}
|
||||
</h4>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -449,6 +449,7 @@
|
|||
"people": "People",
|
||||
"people_talking": "{count} people talking",
|
||||
"person_talking": "{count} person talking",
|
||||
"no_more_results": "No more results",
|
||||
"load_more": "Load more results"
|
||||
},
|
||||
"selectable_list": {
|
||||
|
|
Loading…
Reference in a new issue