Add songCount column to Artist table

This commit is contained in:
Deluan
2020-05-08 09:50:33 -04:00
committed by Deluan Quintão
parent 1c41582d79
commit 70047fe20e
5 changed files with 34 additions and 4 deletions
+1
View File
@@ -38,6 +38,7 @@ const ArtistList = (props) => (
<Datagrid rowClick={artistRowClick}>
<TextField source="name" />
<NumberField source="albumCount" />
<NumberField source="songCount" />
</Datagrid>
</List>
)