1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 03:52:33 +02:00

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

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;