Fixed: Show Year in Manual Import List

pull/3803/head
Qstick 5 years ago
parent 78cac9fcfa
commit 923db77751

@ -71,6 +71,7 @@ class SelectMovieModalContent extends Component {
key={item.id}
id={item.id}
title={item.title}
year={item.year}
onMovieSelect={onMovieSelect}
/>
) :

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

Loading…
Cancel
Save