Skip to content

Commit 46801c0

Browse files
authored
Merge branch 'main' into release/invokeai-3-0-rc
2 parents 9370572 + ace6532 commit 46801c0

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ const GalleryBoardName = (props: Props) => {
3030
const numOfBoardImages = useBoardTotal(selectedBoardId);
3131

3232
const formattedBoardName = useMemo(() => {
33-
if (!boardName || !numOfBoardImages) {
34-
return '';
35-
}
33+
if (!boardName) return '';
34+
if (boardName && !numOfBoardImages) return boardName;
3635
if (boardName.length > 20) {
3736
return `${boardName.substring(0, 20)}... (${numOfBoardImages})`;
3837
}

invokeai/frontend/web/src/features/ui/components/tabs/ModelManager/subpanels/AddModelsPanel/FoundModelsList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export default function FoundModelsList() {
7676
dispatch(
7777
addToast(
7878
makeToast({
79-
title: 'Faile To Add Model',
79+
title: 'Failed To Add Model',
8080
status: 'error',
8181
})
8282
)

0 commit comments

Comments
 (0)