From 744302e8ab9ff78747982414a79c46f04877d320 Mon Sep 17 00:00:00 2001 From: DanielS Date: Thu, 25 Jun 2026 01:29:01 +0200 Subject: [PATCH] fix: resolve popover cutoff inside table by setting overflow-visible and adding debug logging for companies --- shop/components/admin/user-list.tsx | 5 +++-- shop/components/ui/table.tsx | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/shop/components/admin/user-list.tsx b/shop/components/admin/user-list.tsx index f282ec9..8d0e0f4 100644 --- a/shop/components/admin/user-list.tsx +++ b/shop/components/admin/user-list.tsx @@ -134,10 +134,11 @@ export function UserList({ initialUsers, companies }: UserListProps) { }) : filteredUsers + console.log('COMPANIES IN USERLIST:', companies) let lastCompanyName: string | null = null return ( - + Benutzerverwaltung @@ -169,7 +170,7 @@ export function UserList({ initialUsers, companies }: UserListProps) { - +
E-Mail diff --git a/shop/components/ui/table.tsx b/shop/components/ui/table.tsx index 7add5f1..c3a9b1d 100644 --- a/shop/components/ui/table.tsx +++ b/shop/components/ui/table.tsx @@ -4,11 +4,11 @@ import * as React from "react" import { cn } from "@/lib/utils" -function Table({ className, ...props }: React.ComponentProps<"table">) { +function Table({ className, containerClassName, ...props }: React.ComponentProps<"table"> & { containerClassName?: string }) { return (