From 2faf1e2ed3f0f391beb7cdb336a6a4a1be8ad51e Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Tue, 9 Jul 2024 22:02:54 +1000 Subject: [PATCH] fix(ui): show uncategorized board when private boards disabled --- .../gallery/components/Boards/BoardsList/BoardsList.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/invokeai/frontend/web/src/features/gallery/components/Boards/BoardsList/BoardsList.tsx b/invokeai/frontend/web/src/features/gallery/components/Boards/BoardsList/BoardsList.tsx index f7fd6150dc..16bddeb705 100644 --- a/invokeai/frontend/web/src/features/gallery/components/Boards/BoardsList/BoardsList.tsx +++ b/invokeai/frontend/web/src/features/gallery/components/Boards/BoardsList/BoardsList.tsx @@ -81,7 +81,7 @@ const BoardsList = () => { options={overlayScrollbarsParams.options} > - + {allowPrivateBoards && } {filteredPrivateBoards.map((board) => ( { + {!allowPrivateBoards && } {filteredSharedBoards.map((board) => (