fixed the positioning of the word "shape" in the settings

This commit is contained in:
csawatzky 2025-05-28 13:19:44 -06:00
parent 219967ac53
commit 86ecb593db

View file

@ -1834,8 +1834,9 @@ export default function BinSettings(props: Props) {
</Box>
<Box marginTop={2}>
<FormControl component="fieldset" fullWidth disabled={!canEdit}>
<OutlinedBox label={<FormLabel component="legend">Shape</FormLabel>} padding={1}>
<FormControl component="fieldset" variant="outlined" fullWidth disabled={!canEdit}>
{/* <OutlinedBox label={<FormLabel component="legend">Shape</FormLabel>} padding={1}> */}
<FormLabel component="legend">Shape</FormLabel>
<RadioGroup
aria-label="bin shape"
name="binShape"
@ -1888,7 +1889,7 @@ export default function BinSettings(props: Props) {
/>
))}
</RadioGroup>
</OutlinedBox>
{/* </OutlinedBox> */}
<FormHelperText>Aeration effectiveness varies with bin shape</FormHelperText>
</FormControl>
</Box>