handle long board names

This commit is contained in:
Mary Hipp 2023-06-16 13:38:37 -04:00 committed by psychedelicious
parent f9f3c91a83
commit 4defb92105

View File

@ -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