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:
parent
f9f3c91a83
commit
4defb92105
@ -221,6 +221,7 @@ const ImageGalleryContent = () => {
|
||||
ref={resizeObserverRef}
|
||||
alignItems="center"
|
||||
justifyContent="space-between"
|
||||
gap={1}
|
||||
>
|
||||
<ButtonGroup isAttached>
|
||||
<IAIIconButton
|
||||
@ -241,7 +242,9 @@ const ImageGalleryContent = () => {
|
||||
/>
|
||||
</ButtonGroup>
|
||||
<Flex>
|
||||
<Text>{selectedBoard ? selectedBoard.board_name : 'All Images'}</Text>
|
||||
<Text noOfLines={1}>
|
||||
{selectedBoard ? selectedBoard.board_name : 'All Images'}
|
||||
</Text>
|
||||
</Flex>
|
||||
<Flex gap={2}>
|
||||
<IAIPopover
|
||||
|
Loading…
Reference in New Issue
Block a user