|
|
@ -22,7 +22,7 @@ class SelectAlbumRow extends Component {
|
|
|
|
component="div"
|
|
|
|
component="div"
|
|
|
|
onPress={this.onPress}
|
|
|
|
onPress={this.onPress}
|
|
|
|
>
|
|
|
|
>
|
|
|
|
{this.props.title}
|
|
|
|
{this.props.title} ({this.props.albumType})
|
|
|
|
</Link>
|
|
|
|
</Link>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -31,6 +31,7 @@ class SelectAlbumRow extends Component {
|
|
|
|
SelectAlbumRow.propTypes = {
|
|
|
|
SelectAlbumRow.propTypes = {
|
|
|
|
id: PropTypes.number.isRequired,
|
|
|
|
id: PropTypes.number.isRequired,
|
|
|
|
title: PropTypes.string.isRequired,
|
|
|
|
title: PropTypes.string.isRequired,
|
|
|
|
|
|
|
|
albumType: PropTypes.string.isRequired,
|
|
|
|
onAlbumSelect: PropTypes.func.isRequired
|
|
|
|
onAlbumSelect: PropTypes.func.isRequired
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|