fix(striker-ui): don't crop content of select in input with select

main
Tsu-ba-me 1 year ago
parent f8f4f8cd80
commit cfaa492a12
  1. 2
      striker-ui/components/OutlinedLabeledInputWithSelect.tsx

@ -68,7 +68,7 @@ const OutlinedLabeledInputWithSelect: FC<
> >
<OutlinedInputWithLabel id={id} label={label} {...inputWithLabelProps} /> <OutlinedInputWithLabel id={id} label={label} {...inputWithLabelProps} />
<SelectWithLabel <SelectWithLabel
formControlProps={{ fullWidth: false }} formControlProps={{ fullWidth: false, sx: { minWidth: 'min-content' } }}
id={`${id}-nested-select`} id={`${id}-nested-select`}
selectItems={selectItems} selectItems={selectItems}
{...selectWithLabelProps} {...selectWithLabelProps}

Loading…
Cancel
Save