From aff9c7120ba4d543cead98181922c52a88fb800c Mon Sep 17 00:00:00 2001 From: Deluan Date: Tue, 29 Jul 2025 20:35:40 -0400 Subject: [PATCH] feat(ui): add Genre column as optional field in playlist table view Added genre as a toggleable column in the playlist songs table. The Genre column displays genre information for each song in playlists and is available through the column toggle menu but disabled by default. Implements feature request from GitHub discussion #4400. Signed-off-by: Deluan --- ui/src/playlist/PlaylistSongs.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/src/playlist/PlaylistSongs.jsx b/ui/src/playlist/PlaylistSongs.jsx index 4292562a..bbe38b4d 100644 --- a/ui/src/playlist/PlaylistSongs.jsx +++ b/ui/src/playlist/PlaylistSongs.jsx @@ -169,6 +169,7 @@ const PlaylistSongs = ({ playlistId, readOnly, actions, ...props }) => { quality: isDesktop && , channels: isDesktop && , bpm: isDesktop && , + genre: , rating: config.enableStarRating && ( { 'playCount', 'playDate', 'albumArtist', + 'genre', 'rating', ], })