From ff3d99f20547a549cc109944db3e2778bf42b2e9 Mon Sep 17 00:00:00 2001 From: Mary Kate Fain Date: Wed, 4 Mar 2026 23:56:04 -0600 Subject: [PATCH] Fix search filter dropdown z-index rendering behind popover SelectContent used z-50 while PopoverContent used z-[200]. Both are portaled to the body, so when a Select inside a Popover is opened, the Select dropdown rendered behind the Popover panel. Raised SelectContent to z-[250] so it always appears above popovers. Closes #55 --- src/components/ui/select.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/select.tsx b/src/components/ui/select.tsx index fe56d4d3..798d0c39 100644 --- a/src/components/ui/select.tsx +++ b/src/components/ui/select.tsx @@ -73,7 +73,7 @@ const SelectContent = React.forwardRef<