Added Teams
All checks were successful
Build and Push Docker Images / build-backend (push) Successful in 26s
Build and Push Docker Images / build-frontend (push) Successful in 1m7s

Minor Rework of Plantafel
This commit is contained in:
2026-04-14 21:17:05 +02:00
parent 6fcaf3f65c
commit 849e24092e
22 changed files with 773 additions and 81 deletions

View File

@@ -13,7 +13,8 @@
employee_number: profile?.employee_number || '',
full_name: profile?.full_name || user?.full_name || user?.email || 'Ohne Profil',
email: user?.email || profile?.email || '',
branch_name: profile?.branch?.name || ''
branch_name: profile?.branch?.name || '',
team_names: (profile?.teams || []).map((team) => team?.name).filter(Boolean).join(', ')
}
}
@@ -52,6 +53,9 @@
},{
key: "branch_name",
label: "Niederlassung",
},{
key: "team_names",
label: "Teams",
}
]
const selectedColumns = ref(templateColumns)