1
0
Fork 0

fix(gui): split base models and additional options

This commit is contained in:
Sean Sube 2023-03-19 00:35:25 -05:00
parent 74ca6e813c
commit 7553040595
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 105 additions and 101 deletions

View File

@ -26,7 +26,8 @@ export function ModelControl() {
staleTime: STALE_TIME,
});
return <Stack direction='row' spacing={2}>
return <Stack direction='column' spacing={2}>
<Stack direction='row' spacing={2}>
<QueryList
id='platforms'
labelKey='platform'
@ -86,6 +87,8 @@ export function ModelControl() {
});
}}
/>
</Stack>
<Stack direction='row' spacing={2}>
<FormControlLabel
label={t('parameter.lpw')}
control={<Checkbox
@ -132,5 +135,6 @@ export function ModelControl() {
});
}}
/>
</Stack>
</Stack>;
}