remove id from table

This commit is contained in:
Adrian Zürcher
2025-11-04 15:31:36 +01:00
parent 35d1a0f734
commit 21dcf1a476
2 changed files with 0 additions and 16 deletions

View File

@@ -17,14 +17,6 @@ export function useRoleTable() {
}); });
const columns = computed(() => [ const columns = computed(() => [
{
name: 'id',
align: 'left' as const,
label: 'Id',
field: 'id',
sortable: true,
style: 'width: 50px; max-width: 50px;',
},
{ {
name: 'role', name: 'role',
align: 'left' as const, align: 'left' as const,

View File

@@ -15,14 +15,6 @@ export function useUserTable() {
}); });
const columns = computed(() => [ const columns = computed(() => [
{
name: 'id',
align: 'left' as const,
label: 'Id',
field: 'id',
sortable: true,
style: 'width: 50px; max-width: 50px;',
},
{ {
name: 'user', name: 'user',
align: 'left' as const, align: 'left' as const,