New: Show year with manual import Movie selection

This commit is contained in:
Qstick 2020-09-23 21:32:56 -04:00
parent ed289ddbdd
commit ca27a80b15
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ class InteractiveImportRow extends Component {
isSelectLanguageModalOpen
} = this.state;
const movieTitle = movie ? movie.title : '';
const movieTitle = movie ? movie.title + ( movie.year > 0 ? ` (${movie.year})` : '') : '';
const showMoviePlaceholder = isSelected && !movie;
const showQualityPlaceholder = isSelected && !quality;