From a7d2a427ec9a8fe46b931dd1fecf394144dcee03 Mon Sep 17 00:00:00 2001 From: Leonardo Salgueiro Date: Thu, 1 Jan 2026 19:59:27 +0000 Subject: [PATCH] forcing string value for EP to always be upper case (#1474) --- .../features/artists/components/album-artist-detail-content.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 354cf4448..fc5218754 100644 --- a/src/renderer/features/artists/components/album-artist-detail-content.tsx +++ b/src/renderer/features/artists/components/album-artist-detail-content.tsx @@ -1165,7 +1165,7 @@ const ArtistAlbums = ({ albumsQuery }: ArtistAlbumsProps) => { break; case 'ep': displayName = t('releaseType.primary.ep', { - postProcess: 'sentenceCase', + postProcess: 'upperCase', }); break; case 'field recording':