Make search say No more results when there are current results
Some checks reported errors
continuous-integration/drone/push Build was killed
Some checks reported errors
continuous-integration/drone/push Build was killed
This commit is contained in:
parent
002cc2c41e
commit
98510ea6f5
2 changed files with 2 additions and 1 deletions
|
@ -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>
|
||||
|
|
|
@ -448,6 +448,7 @@
|
|||
"search": {
|
||||
"hashtags": "Hashtags",
|
||||
"no_results": "No results",
|
||||
"no_more_results": "No more results",
|
||||
"load_more": "Load more results",
|
||||
"people": "People",
|
||||
"people_talking": "{count} people talking",
|
||||
|
|
Loading…
Reference in a new issue