From ac9543a6737b7cc1fa4c67438e81cb528496380c Mon Sep 17 00:00:00 2001 From: Danny Avila <110412045+danny-avila@users.noreply.github.com> Date: Wed, 3 Jan 2024 10:07:36 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20style:=20Add=20Dynamic=20Height?= =?UTF-8?q?=20to=20Endpoint/Model=20Menus=20(#1480)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * style(EndpointsMenu): add scrolling and dynamic height * style(SelectDropDownPop): add dynamic height --- client/src/components/Chat/Menus/EndpointsMenu.tsx | 2 +- client/src/components/ui/SelectDropDownPop.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/components/Chat/Menus/EndpointsMenu.tsx b/client/src/components/Chat/Menus/EndpointsMenu.tsx index f7339ac29..a7d490121 100644 --- a/client/src/components/Chat/Menus/EndpointsMenu.tsx +++ b/client/src/components/Chat/Menus/EndpointsMenu.tsx @@ -36,7 +36,7 @@ const EndpointsMenu: FC = () => { diff --git a/client/src/components/ui/SelectDropDownPop.tsx b/client/src/components/ui/SelectDropDownPop.tsx index 0e40b70d5..51c453fa6 100644 --- a/client/src/components/ui/SelectDropDownPop.tsx +++ b/client/src/components/ui/SelectDropDownPop.tsx @@ -95,7 +95,7 @@ function SelectDropDownPop({ {availableValues.map((option) => { return ( @@ -105,7 +105,7 @@ function SelectDropDownPop({ value={option} selected={!!(value && value === option)} onClick={() => setValue(option)} - > + /> ); })}