mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe
synced 2025-06-17 03:39:13 +08:00
Add message if no results found
This commit is contained in:
parent
b025b6f10f
commit
0b071b77b2
2 changed files with 5 additions and 2 deletions
|
@ -161,6 +161,9 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="users">
|
||||
<div v-if="users.length == 0 && page == 1">
|
||||
<p>{{ $t('moderation.users.no_results') }}</p>
|
||||
</div>
|
||||
<div
|
||||
v-for="user in users"
|
||||
:key="user.id"
|
||||
|
|
|
@ -297,7 +297,6 @@
|
|||
"next": "Next page",
|
||||
"previous": "Previous page",
|
||||
"users": {
|
||||
"users": "Users",
|
||||
"filter": {
|
||||
"active": "Active",
|
||||
"all": "All accounts",
|
||||
|
@ -309,7 +308,8 @@
|
|||
"pending": "Pending Approval",
|
||||
"person": "Person",
|
||||
"unconfirmed": "Unconfirmed"
|
||||
}
|
||||
},
|
||||
"no_results": "No accounts found"
|
||||
},
|
||||
"nav": {
|
||||
"about": "About",
|
||||
|
|
Loading…
Reference in a new issue