mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-01-15 06:18:03 -05:00
Revert "rearrange image | video | asset for boards"
This reverts commit 8a60def51f.
This commit is contained in:
@@ -95,8 +95,7 @@ const GalleryBoard = ({ board, isSelected }: GalleryBoardProps) => {
|
||||
{board.archived && <Icon as={PiArchiveBold} fill="base.300" />}
|
||||
<Flex justifyContent="flex-end">
|
||||
<Text variant="subtext">
|
||||
{board.image_count} | {isVideoEnabled && `${board.video_count} | `}
|
||||
{board.asset_count}
|
||||
{board.image_count} | {board.asset_count} {isVideoEnabled && `| ${board.video_count}`}
|
||||
</Text>
|
||||
</Flex>
|
||||
</Flex>
|
||||
|
||||
@@ -120,8 +120,7 @@ const NoBoardBoard = memo(({ isSelected }: Props) => {
|
||||
</Text>
|
||||
{autoAddBoardId === 'none' && <AutoAddBadge />}
|
||||
<Text variant="subtext">
|
||||
{imagesTotal} | {isVideoEnabled && `${videoTotal} | `}
|
||||
{assetsTotal}
|
||||
{imagesTotal} | {assetsTotal} {isVideoEnabled && `| ${videoTotal}`}
|
||||
</Text>
|
||||
</Flex>
|
||||
</Tooltip>
|
||||
|
||||
Reference in New Issue
Block a user