Fixed issue where the training type dropdown in the ui was not showing fully
This commit is contained in:
parent
d9f26c2f87
commit
b5f21ae695
|
|
@ -284,6 +284,8 @@ export const SelectInput = (props: SelectInputProps) => {
|
||||||
isMulti={multiple}
|
isMulti={multiple}
|
||||||
className="aitk-react-select-container"
|
className="aitk-react-select-container"
|
||||||
classNamePrefix="aitk-react-select"
|
classNamePrefix="aitk-react-select"
|
||||||
|
menuPosition="fixed"
|
||||||
|
menuPlacement="auto"
|
||||||
onChange={selected => {
|
onChange={selected => {
|
||||||
if (multiple) {
|
if (multiple) {
|
||||||
const arr = (selected as { value: string }[] | null) ?? [];
|
const arr = (selected as { value: string }[] | null) ?? [];
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue