fix: resolve popover cutoff inside table by setting overflow-visible and adding debug logging for companies
Some checks failed
Staging Build / build (push) Has been cancelled

This commit is contained in:
DanielS
2026-06-25 01:29:01 +02:00
parent 396f135e87
commit 744302e8ab
2 changed files with 5 additions and 4 deletions

View File

@@ -134,10 +134,11 @@ export function UserList({ initialUsers, companies }: UserListProps) {
})
: filteredUsers
console.log('COMPANIES IN USERLIST:', companies)
let lastCompanyName: string | null = null
return (
<Card className="glass-dark border-white/10 shadow-2xl overflow-hidden">
<Card className="glass-dark border-white/10 shadow-2xl overflow-visible">
<CardHeader>
<CardTitle>Benutzerverwaltung</CardTitle>
<CardDescription className="text-slate-400">
@@ -169,7 +170,7 @@ export function UserList({ initialUsers, companies }: UserListProps) {
</label>
</div>
</div>
<Table>
<Table containerClassName="overflow-visible">
<TableHeader>
<TableRow className="border-white/10 hover:bg-white/5">
<TableHead className="text-slate-200">E-Mail</TableHead>