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>
|
</div>
|
||||||
<div class="users">
|
<div class="users">
|
||||||
|
<div v-if="users.length == 0 && page == 1">
|
||||||
|
<p>{{ $t('moderation.users.no_results') }}</p>
|
||||||
|
</div>
|
||||||
<div
|
<div
|
||||||
v-for="user in users"
|
v-for="user in users"
|
||||||
:key="user.id"
|
:key="user.id"
|
||||||
|
|
|
@ -297,7 +297,6 @@
|
||||||
"next": "Next page",
|
"next": "Next page",
|
||||||
"previous": "Previous page",
|
"previous": "Previous page",
|
||||||
"users": {
|
"users": {
|
||||||
"users": "Users",
|
|
||||||
"filter": {
|
"filter": {
|
||||||
"active": "Active",
|
"active": "Active",
|
||||||
"all": "All accounts",
|
"all": "All accounts",
|
||||||
|
@ -309,7 +308,8 @@
|
||||||
"pending": "Pending Approval",
|
"pending": "Pending Approval",
|
||||||
"person": "Person",
|
"person": "Person",
|
||||||
"unconfirmed": "Unconfirmed"
|
"unconfirmed": "Unconfirmed"
|
||||||
}
|
},
|
||||||
|
"no_results": "No accounts found"
|
||||||
},
|
},
|
||||||
"nav": {
|
"nav": {
|
||||||
"about": "About",
|
"about": "About",
|
||||||
|
|
Loading…
Reference in a new issue