Compare commits

..

No commits in common. "c91dfb5a54c2b94dce13f0646173c8dfa6dad353" and "3f2ddce75e922595428f034a2eb8a93bd2f59411" have entirely different histories.

4 changed files with 10 additions and 6 deletions

View file

@ -52,9 +52,10 @@
</div>
<div
v-if="finalItems.length === 0 && !!$slots.empty"
class="list-item list-empty-content faint"
class="list-empty-content faint"
>
<slot name="empty" />
<slot name="load" />
</div>
<div class="footer">
<button
@ -63,6 +64,7 @@
@click="fetchEntries"
>
{{ $t('general.generic_error') }}
{{ error }}
</button>
<FAIcon
v-else-if="loading"
@ -77,7 +79,7 @@
>
{{ $t('general.more') }}
</a>
<span v-else-if="finalItems.length !== 0">
<span v-else>
{{ $t('general.no_more') }}
</span>
</div>

View file

@ -1,5 +1,5 @@
.UsersTab {
height: 100%;
max-height: 100%;
display: flex;
flex-direction: column;
padding: 0;
@ -10,7 +10,7 @@
}
.splitter {
height: 100%;
max-height: 100%;
display: flex;
overflow-y: hidden;
}

View file

@ -135,8 +135,11 @@
<template #item="{item}">
<AdminUserCard :user-id="item.id" />
</template>
<template #load>
<span> loading </span>
</template>
<template #empty>
<span>{{ $t('admin_dash.users.no_users_found')}}</span>
<span> no users </span>
</template>
</List>
</div>

View file

@ -1295,7 +1295,6 @@
"users": {
"title": "Users",
"local_id": "Local ID",
"no_users_found": "No users found",
"labels": {
"query": "Search",
"nickname": "{'@'}handle",