From 122b62465d4e9b95a133d4ee7850575bd8b6c5e5 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 4292562ab..bbe38b4d5 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', ], })