feat(ui): add mood column to Album and Song list views (#3925)

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan Quintão
2025-04-05 08:19:11 -03:00
committed by Deluan
parent 2b84c574ba
commit 73eb0e254b
3 changed files with 18 additions and 1 deletions
+8
View File
@@ -168,6 +168,13 @@ const SongList = (props) => {
),
bpm: isDesktop && <NumberField source="bpm" />,
genre: <TextField source="genre" />,
mood: isDesktop && (
<FunctionField
source="mood"
render={(r) => r.tags?.mood?.[0] || ''}
sortable={false}
/>
),
comment: <TextField source="comment" />,
path: <PathField source="path" />,
createdAt: <DateField source="createdAt" showTime />,
@@ -183,6 +190,7 @@ const SongList = (props) => {
'playDate',
'albumArtist',
'genre',
'mood',
'comment',
'path',
'createdAt',