no matches placeholders

This commit is contained in:
Girish Ramakrishnan
2025-09-30 15:26:17 +02:00
parent 703621d84e
commit f8e15acf89
7 changed files with 18 additions and 11 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ onMounted(async () => {
<Button @click="onEditOrAddGroup()">{{ $t('main.action.add') }}</Button>
</template>
<TableView :columns="groupsColumns" :model="filteredGroups" :busy="busy" style="max-height: 400px;" :placeholder="$t('users.groups.emptyPlaceholder')">
<TableView :columns="groupsColumns" :model="filteredGroups" :busy="busy" style="max-height: 400px;" :placeholder="$t(searchFilter ? 'users.groups.noMatchesPlaceholder' : 'users.groups.emptyPlaceholder')">
<template #name="group">
{{ group.name }} &nbsp; <i v-if="group.source" class="far fa-address-book" v-tooltip="$t('users.groups.externalLdapTooltip')"></i>
</template>