feat: rename year to max_year and add min_year to album. #118

This commit is contained in:
Deluan
2020-03-27 20:01:08 -04:00
parent fc650cd127
commit 53e8a92fed
10 changed files with 95 additions and 14 deletions
+2 -2
View File
@@ -11,8 +11,8 @@ const AlbumDetails = ({ classes, record }) => {
if (record.genre) {
genreDateLine.push(record.genre)
}
if (record.year) {
genreDateLine.push(record.year)
if (record.maxYear) {
genreDateLine.push(record.maxYear)
}
return genreDateLine.join(' · ')
}
+2 -2
View File
@@ -31,7 +31,7 @@ const AlbumFilter = (props) => (
<AutocompleteInput emptyText="-- None --" />
</ReferenceInput>
<NullableBooleanInput source="compilation" />
<NumberInput source="year" />
<NumberInput source="max_year" />
</Filter>
)
@@ -68,7 +68,7 @@ const AlbumList = (props) => {
render={(r) => (r.albumArtist ? r.albumArtist : r.artist)}
/>
{isDesktop && <NumberField source="songCount" />}
<TextField source="year" />
<TextField source="maxYear" />
{isDesktop && <DurationField source="duration" />}
</Datagrid>
</List>