Make search say No more results when there are current results
This commit is contained in:
parent
b11ac22192
commit
b09912d2f9
|
@ -89,7 +89,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>
|
||||
|
|
|
@ -828,6 +828,7 @@
|
|||
"person_talking": "{count} person talking",
|
||||
"people_talking": "{count} people talking",
|
||||
"no_results": "No results",
|
||||
"no_more_results": "No more results",
|
||||
"load_more": "Load more results"
|
||||
},
|
||||
"password_reset": {
|
||||
|
|
Loading…
Reference in New Issue