From 9cb1471170f0f2c0b92ead728e1662d7183dcab4 Mon Sep 17 00:00:00 2001 From: kveld9 Date: Sun, 12 Apr 2026 17:55:13 -0300 Subject: [PATCH] chore: apply stashed changes --- src/pages/PlaylistDetail.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pages/PlaylistDetail.tsx b/src/pages/PlaylistDetail.tsx index 50203656..827fb659 100644 --- a/src/pages/PlaylistDetail.tsx +++ b/src/pages/PlaylistDetail.tsx @@ -57,6 +57,7 @@ const PL_COLUMNS: readonly ColDef[] = [ { key: 'num', i18nKey: null, minWidth: 60, defaultWidth: 60, required: true }, { key: 'title', i18nKey: 'trackTitle', minWidth: 150, defaultWidth: 0, required: true, flex: true }, { key: 'artist', i18nKey: 'trackArtist', minWidth: 80, defaultWidth: 180, required: false }, + { key: 'album', i18nKey: 'trackAlbum', minWidth: 80, defaultWidth: 180, required: false }, { key: 'favorite', i18nKey: 'trackFavorite', minWidth: 50, defaultWidth: 70, required: false }, { key: 'rating', i18nKey: 'trackRating', minWidth: 80, defaultWidth: 120, required: false }, { key: 'duration', i18nKey: 'trackDuration', minWidth: 72, defaultWidth: 92, required: false }, @@ -1040,6 +1041,11 @@ export default function PlaylistDetail() { { if (song.artistId) { e.stopPropagation(); navigate(`/artist/${song.artistId}`); } }}>{song.artist} ); + case 'album': return ( +
+ { if (song.albumId) { e.stopPropagation(); navigate(`/album/${song.albumId}`); } }}>{song.album} +
+ ); case 'favorite': return (