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