From c2a60657d4eba9ae8ba47d4e53ce2dbb3eeb2234 Mon Sep 17 00:00:00 2001 From: Peer Richelsen Date: Wed, 15 Dec 2021 13:47:38 +0000 Subject: [PATCH] removed overflow hidden from dialog to fix dropdowns (#1321) Co-authored-by: Bailey Pumfleet --- components/Dialog.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/Dialog.tsx b/components/Dialog.tsx index 86e4de64..2b13849f 100644 --- a/components/Dialog.tsx +++ b/components/Dialog.tsx @@ -6,7 +6,7 @@ export function Dialog(props: DialogProps) { const { children, ...other } = props; return ( - + {children} ); @@ -17,7 +17,7 @@ export const DialogContent = React.forwardRef ( {children} @@ -32,10 +32,10 @@ type DialogHeaderProps = { export function DialogHeader(props: DialogHeaderProps) { return (
- - {props.subtitle &&
{props.subtitle}
} + {props.subtitle &&
{props.subtitle}
}
); } @@ -43,7 +43,7 @@ export function DialogHeader(props: DialogHeaderProps) { export function DialogFooter(props: { children: ReactNode }) { return (
-
{props.children}
+
{props.children}
); }