Make search say No more results when there are current results

This commit is contained in:
Tusooa Zhu 2022-07-15 20:26:05 -04:00
parent b11ac22192
commit b09912d2f9
No known key found for this signature in database
GPG Key ID: 7B467EDE43A08224
2 changed files with 2 additions and 1 deletions

View File

@ -89,7 +89,7 @@
class="search-result-heading" class="search-result-heading"
> >
<h4> <h4>
{{ $t('search.no_results') }} {{ visibleStatuses.length === 0 ? $t('search.no_results') : $t('search.no_more_results') }}
</h4> </h4>
</div> </div>
</div> </div>

View File

@ -828,6 +828,7 @@
"person_talking": "{count} person talking", "person_talking": "{count} person talking",
"people_talking": "{count} people talking", "people_talking": "{count} people talking",
"no_results": "No results", "no_results": "No results",
"no_more_results": "No more results",
"load_more": "Load more results" "load_more": "Load more results"
}, },
"password_reset": { "password_reset": {