mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(ui): Gallery placeholder text not being centered
This commit is contained in:
parent
b3babf26a5
commit
d68234d879
@ -1,4 +1,4 @@
|
||||
import { ButtonGroup, Flex, Grid, Icon } from '@chakra-ui/react';
|
||||
import { ButtonGroup, Flex, Grid, Icon, Text } from '@chakra-ui/react';
|
||||
import { requestImages } from 'app/socketio/actions';
|
||||
import { useAppDispatch, useAppSelector } from 'app/storeHooks';
|
||||
import IAIButton from 'common/components/IAIButton';
|
||||
@ -242,7 +242,7 @@ const ImageGalleryContent = () => {
|
||||
h: 16,
|
||||
}}
|
||||
/>
|
||||
<p>{t('gallery.noImagesInGallery')}</p>
|
||||
<Text textAlign="center">{t('gallery.noImagesInGallery')}</Text>
|
||||
</Flex>
|
||||
)}
|
||||
</Flex>
|
||||
|
Loading…
Reference in New Issue
Block a user