Fine tune colors, remove PlayButton from AlbumDetail

This commit is contained in:
Deluan
2020-10-30 15:46:34 -04:00
committed by Deluan Quintão
parent 6da2f1ba92
commit 6ccdc2e068
5 changed files with 50 additions and 39 deletions
+2 -2
View File
@@ -15,8 +15,8 @@ const formatRange = (record, source) => {
return range.join('-')
}
const RangeField = ({ record = {}, source }) => {
return <span>{formatRange(record, source)}</span>
const RangeField = ({ className, record = {}, source }) => {
return <span className={className}>{formatRange(record, source)}</span>
}
RangeField.propTypes = {