Add Date Added column in Album and Song lists (#2055)

This commit is contained in:
Kendall Garner
2022-12-23 03:44:07 +00:00
committed by GitHub
parent db6e8e45b7
commit 55b0227494
4 changed files with 23 additions and 11 deletions
+2
View File
@@ -139,6 +139,7 @@ const SongList = (props) => {
bpm: isDesktop && <NumberField source="bpm" />,
genre: <TextField source="genre" />,
comment: <TextField source="comment" />,
createdAt: <DateField source="createdAt" showTime />,
}
}, [isDesktop, classes.ratingField])
@@ -152,6 +153,7 @@ const SongList = (props) => {
'albumArtist',
'genre',
'comment',
'createdAt',
],
})