Revert "rearrange image | video | asset for boards"

This reverts commit 8a60def51f.
This commit is contained in:
Mary Hipp Rogers
2025-08-28 08:26:09 -04:00
parent 5d0ed45326
commit 4e66ccefe8
2 changed files with 2 additions and 4 deletions

View File

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

View File

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