mirror of
https://github.com/Readarr/Readarr.git
synced 2026-02-01 09:42:01 -05:00
Fix: Show Album Type on Manual Import Album Select Modal
This commit is contained in:
@@ -39,6 +39,7 @@ class SelectAlbumModalContent extends Component {
|
||||
key={item.id}
|
||||
id={item.id}
|
||||
title={item.title}
|
||||
albumType={item.albumType}
|
||||
onAlbumSelect={onAlbumSelect}
|
||||
/>
|
||||
);
|
||||
|
||||
@@ -22,7 +22,7 @@ class SelectAlbumRow extends Component {
|
||||
component="div"
|
||||
onPress={this.onPress}
|
||||
>
|
||||
{this.props.title}
|
||||
{this.props.title} ({this.props.albumType})
|
||||
</Link>
|
||||
);
|
||||
}
|
||||
@@ -31,6 +31,7 @@ class SelectAlbumRow extends Component {
|
||||
SelectAlbumRow.propTypes = {
|
||||
id: PropTypes.number.isRequired,
|
||||
title: PropTypes.string.isRequired,
|
||||
albumType: PropTypes.string.isRequired,
|
||||
onAlbumSelect: PropTypes.func.isRequired
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user