From 7ae0aa198e28359940bd3fd751afcc6332b21f2b Mon Sep 17 00:00:00 2001 From: jeffvli Date: Sun, 4 Jan 2026 02:53:46 -0800 Subject: [PATCH] use separator string for releasetype display --- .../artists/components/album-artist-detail-content.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/features/artists/components/album-artist-detail-content.tsx b/src/renderer/features/artists/components/album-artist-detail-content.tsx index c5916e80b..8371c5f1e 100644 --- a/src/renderer/features/artists/components/album-artist-detail-content.tsx +++ b/src/renderer/features/artists/components/album-artist-detail-content.tsx @@ -58,7 +58,7 @@ import { } from '/@/renderer/store/settings.store'; import { titleCase } from '/@/renderer/utils'; import { sanitize } from '/@/renderer/utils/sanitize'; -import { sortAlbumList } from '/@/shared/api/utils'; +import { SEPARATOR_STRING, sortAlbumList } from '/@/shared/api/utils'; import { ActionIcon, ActionIconGroup } from '/@/shared/components/action-icon/action-icon'; import { Badge } from '/@/shared/components/badge/badge'; import { Button } from '/@/shared/components/button/button'; @@ -1266,7 +1266,7 @@ const ArtistAlbums = ({ albumsQuery }: ArtistAlbumsProps) => { if (releaseType.includes('/')) { const types = releaseType.split('/'); const displayNames = types.map((type) => getDisplayNameForType(type)); - displayName = displayNames.join('/'); + displayName = displayNames.join(SEPARATOR_STRING); } else { displayName = getDisplayNameForType(releaseType); }