mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(ui): fix console error related to css
This commit is contained in:
parent
2c4128d44e
commit
52ae15c167
@ -98,12 +98,16 @@ const ParamEmbeddingPopover = (props: Props) => {
|
|||||||
sx={{ p: 0, w: `calc(${PARAMETERS_PANEL_WIDTH} - 2rem )` }}
|
sx={{ p: 0, w: `calc(${PARAMETERS_PANEL_WIDTH} - 2rem )` }}
|
||||||
>
|
>
|
||||||
{data.length === 0 ? (
|
{data.length === 0 ? (
|
||||||
<Flex sx={{ justifyContent: 'center', p: 2 }}>
|
<Flex
|
||||||
<Text
|
sx={{
|
||||||
sx={{ fontSize: 'sm', color: 'base.500', _dark: 'base.700' }}
|
justifyContent: 'center',
|
||||||
>
|
p: 2,
|
||||||
No Embeddings Loaded
|
fontSize: 'sm',
|
||||||
</Text>
|
color: 'base.500',
|
||||||
|
_dark: { color: 'base.700' },
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Text>No Embeddings Loaded</Text>
|
||||||
</Flex>
|
</Flex>
|
||||||
) : (
|
) : (
|
||||||
<IAIMantineSearchableSelect
|
<IAIMantineSearchableSelect
|
||||||
|
Loading…
Reference in New Issue
Block a user