From 14dd35ba98a3cbf5a5e5c30e380a9a28471fd803 Mon Sep 17 00:00:00 2001 From: gitdallas Date: Tue, 3 Oct 2023 15:00:47 -0500 Subject: [PATCH 1/4] fix issue with select menu getting cut by edge of modal Signed-off-by: gitdallas --- client/src/app/components/SimpleSelect.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/app/components/SimpleSelect.tsx b/client/src/app/components/SimpleSelect.tsx index d2df1be5be..f95d105e17 100644 --- a/client/src/app/components/SimpleSelect.tsx +++ b/client/src/app/components/SimpleSelect.tsx @@ -40,6 +40,7 @@ export const SimpleSelect: React.FC = ({ return ( Date: Wed, 4 Oct 2023 08:20:16 -0500 Subject: [PATCH 3/4] add maxheight to select Signed-off-by: gitdallas --- client/src/app/components/SimpleSelect.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/app/components/SimpleSelect.tsx b/client/src/app/components/SimpleSelect.tsx index a172bad1a6..79b3099012 100644 --- a/client/src/app/components/SimpleSelect.tsx +++ b/client/src/app/components/SimpleSelect.tsx @@ -37,10 +37,11 @@ export const SimpleSelect: React.FC = ({ ...props }) => { const [isOpen, setIsOpen] = useState(false); - + console.log({ ...props }); return (