From b5f21ae695fa0f40c202f2ff1f1cbfa0bf9edd8d Mon Sep 17 00:00:00 2001 From: Jaret Burkett Date: Wed, 3 Jun 2026 10:14:15 -0600 Subject: [PATCH] Fixed issue where the training type dropdown in the ui was not showing fully --- ui/src/components/formInputs.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/src/components/formInputs.tsx b/ui/src/components/formInputs.tsx index 3d8cff6f..8294badd 100644 --- a/ui/src/components/formInputs.tsx +++ b/ui/src/components/formInputs.tsx @@ -284,6 +284,8 @@ export const SelectInput = (props: SelectInputProps) => { isMulti={multiple} className="aitk-react-select-container" classNamePrefix="aitk-react-select" + menuPosition="fixed" + menuPlacement="auto" onChange={selected => { if (multiple) { const arr = (selected as { value: string }[] | null) ?? [];