Skip to content

Commit ec1b429

Browse files
psychedelicioushipsterusername
authored andcommitted
feat(ui): add divider between board search and list
1 parent 146e3a3 commit ec1b429

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

invokeai/frontend/web/src/features/gallery/components/ImageGalleryContent.tsx

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
import type { ChakraProps } from '@invoke-ai/ui-library';
2-
import { Box, Collapse, Flex, IconButton, Spacer, Tab, TabList, Tabs, useDisclosure } from '@invoke-ai/ui-library';
2+
import {
3+
Box,
4+
Collapse,
5+
Divider,
6+
Flex,
7+
IconButton,
8+
Spacer,
9+
Tab,
10+
TabList,
11+
Tabs,
12+
useDisclosure,
13+
} from '@invoke-ai/ui-library';
314
import { useAppDispatch, useAppSelector } from 'app/store/storeHooks';
415
import { GalleryHeader } from 'features/gallery/components/GalleryHeader';
516
import { galleryViewChanged } from 'features/gallery/store/gallerySlice';
@@ -102,6 +113,7 @@ const ImageGalleryContent = () => {
102113
<Collapse in={boardSearchDisclosure.isOpen}>
103114
<BoardsSearch />
104115
</Collapse>
116+
<Divider pt={2} />
105117
<BoardsList />
106118
</Panel>
107119
<ResizeHandle

0 commit comments

Comments
 (0)