From 725e44f04894ab54599d23351c1043ce63dd1d5a Mon Sep 17 00:00:00 2001 From: jeffvli Date: Wed, 19 Nov 2025 02:52:35 -0800 Subject: [PATCH] adjust genre display and gap in header --- .../albums/components/album-detail-header.tsx | 25 +++++++++---------- .../components/library-header.module.css | 4 +-- 2 files changed, 14 insertions(+), 15 deletions(-) diff --git a/src/renderer/features/albums/components/album-detail-header.tsx b/src/renderer/features/albums/components/album-detail-header.tsx index 213341dc8..67107207d 100644 --- a/src/renderer/features/albums/components/album-detail-header.tsx +++ b/src/renderer/features/albums/components/album-detail-header.tsx @@ -12,9 +12,8 @@ import { useCurrentServer } from '/@/renderer/store'; import { formatDateAbsoluteUTC, formatDurationString, titleCase } from '/@/renderer/utils'; import { normalizeReleaseTypes } from '/@/renderer/utils/normalize-release-types'; import { ActionIcon } from '/@/shared/components/action-icon/action-icon'; -import { Button } from '/@/shared/components/button/button'; import { Group } from '/@/shared/components/group/group'; -import { Pill } from '/@/shared/components/pill/pill'; +import { Pill, PillLink } from '/@/shared/components/pill/pill'; import { Rating } from '/@/shared/components/rating/rating'; import { Stack } from '/@/shared/components/stack/stack'; import { Text } from '/@/shared/components/text/text'; @@ -147,34 +146,33 @@ export const AlbumDetailHeader = forwardRef item.value && ( - {item.value} + + {item.value} + ), )} {showGenres && ( - + {detailQuery?.data?.genres?.map((genre) => ( - + ))} - + )} - +