Remove max-height from the users view and groups view tables

This commit is contained in:
Girish Ramakrishnan
2025-10-14 16:20:28 +02:00
parent 1431700642
commit 1f60c6dd21
2 changed files with 2 additions and 2 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(searchFilter ? 'users.groups.noMatchesPlaceholder' : 'users.groups.emptyPlaceholder')">
<TableView :columns="groupsColumns" :model="filteredGroups" :busy="busy" :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>