mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
handle long board names
This commit is contained in:
committed by
psychedelicious
parent
f9f3c91a83
commit
4defb92105
@ -221,6 +221,7 @@ const ImageGalleryContent = () => {
|
|||||||
ref={resizeObserverRef}
|
ref={resizeObserverRef}
|
||||||
alignItems="center"
|
alignItems="center"
|
||||||
justifyContent="space-between"
|
justifyContent="space-between"
|
||||||
|
gap={1}
|
||||||
>
|
>
|
||||||
<ButtonGroup isAttached>
|
<ButtonGroup isAttached>
|
||||||
<IAIIconButton
|
<IAIIconButton
|
||||||
@ -241,7 +242,9 @@ const ImageGalleryContent = () => {
|
|||||||
/>
|
/>
|
||||||
</ButtonGroup>
|
</ButtonGroup>
|
||||||
<Flex>
|
<Flex>
|
||||||
<Text>{selectedBoard ? selectedBoard.board_name : 'All Images'}</Text>
|
<Text noOfLines={1}>
|
||||||
|
{selectedBoard ? selectedBoard.board_name : 'All Images'}
|
||||||
|
</Text>
|
||||||
</Flex>
|
</Flex>
|
||||||
<Flex gap={2}>
|
<Flex gap={2}>
|
||||||
<IAIPopover
|
<IAIPopover
|
||||||
|
Reference in New Issue
Block a user