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