Add file path to toggleable columns in SongList view. Fix #1719

This commit is contained in:
Deluan 2023-03-09 17:47:09 -05:00 committed by Joe Stump
parent 84ed24e0ce
commit 628b585fd4
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

View File

@ -137,6 +137,7 @@ const SongList = (props) => {
bpm: isDesktop && <NumberField source="bpm" />,
genre: <TextField source="genre" />,
comment: <TextField source="comment" />,
path: <TextField source="path" />,
createdAt: <DateField source="createdAt" showTime />,
}
}, [isDesktop, classes.ratingField])
@ -151,6 +152,7 @@ const SongList = (props) => {
'albumArtist',
'genre',
'comment',
'path',
'createdAt',
],
})