mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
Fix: Show Album Type on Manual Import Album Select Modal
This commit is contained in:
parent
9a11b0fd7b
commit
ead0b7a2f4
2 changed files with 3 additions and 1 deletions
|
@ -39,6 +39,7 @@ class SelectAlbumModalContent extends Component {
|
||||||
key={item.id}
|
key={item.id}
|
||||||
id={item.id}
|
id={item.id}
|
||||||
title={item.title}
|
title={item.title}
|
||||||
|
albumType={item.albumType}
|
||||||
onAlbumSelect={onAlbumSelect}
|
onAlbumSelect={onAlbumSelect}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
|
@ -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
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue