show year and runtime for albums on artist page

This commit is contained in:
Violet Caulfield
2025-12-26 10:51:32 -06:00
parent b76468c29e
commit c01a750ed0

View File

@@ -213,7 +213,7 @@ function ItemRowDetails({ item }: { item: BaseItemDto }): React.JSX.Element {
const shouldRenderArtistName =
item.Type === 'Audio' || (item.Type === 'MusicAlbum' && !route.name.includes('Overview'))
const shouldRenderProductionYear = item.Type === 'MusicAlbum' && route.name.includes('Overview')
const shouldRenderProductionYear = item.Type === 'MusicAlbum' && route.name.includes('Artist')
const shouldRenderGenres = item.Type === 'Playlist' || item.Type === BaseItemKind.MusicArtist