Skip to content

Commit 4d7c935

Browse files
committed
fix: prevent unruly stacking contexts from breaking scrolling
1 parent dfb4bde commit 4d7c935

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

site/src/components/MultiSelectCombobox/MultiSelectCombobox.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -706,3 +706,5 @@ export const MultiSelectCombobox = forwardRef<
706706
);
707707
},
708708
);
709+
710+
MultiSelectCombobox.displayName = "MultiSelectCombobox";

site/src/modules/dashboard/DashboardLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const DashboardLayout: FC = () => {
2626
<div className="flex flex-col h-screen justify-between">
2727
<Navbar />
2828

29-
<div className="flex flex-col flex-1 min-h-0 overflow-y-auto">
29+
<div className="relative flex flex-col flex-1 min-h-0 overflow-y-auto">
3030
<Suspense fallback={<Loader />}>
3131
<Outlet />
3232
</Suspense>

0 commit comments

Comments
 (0)