mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix: Rearrange Model Select to take full width (#3701)
Some users want the model select to take full width coz their model names might be long. As this is a more frequently used feature, rearrange it to do that. Followed by VAE (as it is related to the model) and the Sampler next to it.
This commit is contained in:
commit
e6a84c5ae5
@ -10,20 +10,19 @@ const ParamModelandVAEandScheduler = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Flex gap={3} w="full" flexWrap={isVaeEnabled ? 'wrap' : 'nowrap'}>
|
<Flex gap={3} w="full" flexWrap={isVaeEnabled ? 'wrap' : 'nowrap'}>
|
||||||
|
<Box w="full">
|
||||||
|
<ModelSelect />
|
||||||
|
</Box>
|
||||||
<Flex gap={3} w="full">
|
<Flex gap={3} w="full">
|
||||||
<Box w="full">
|
|
||||||
<ModelSelect />
|
|
||||||
</Box>
|
|
||||||
|
|
||||||
{isVaeEnabled && (
|
{isVaeEnabled && (
|
||||||
<Box w="full">
|
<Box w="full">
|
||||||
<VAESelect />
|
<VAESelect />
|
||||||
</Box>
|
</Box>
|
||||||
)}
|
)}
|
||||||
|
<Box w="full">
|
||||||
|
<ParamScheduler />
|
||||||
|
</Box>
|
||||||
</Flex>
|
</Flex>
|
||||||
<Box w="full">
|
|
||||||
<ParamScheduler />
|
|
||||||
</Box>
|
|
||||||
</Flex>
|
</Flex>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user