From ca27a80b153a89f5e3e5b6f6039088c0eefe1c0c Mon Sep 17 00:00:00 2001 From: Qstick Date: Wed, 23 Sep 2020 21:32:56 -0400 Subject: [PATCH] New: Show year with manual import Movie selection --- .../src/InteractiveImport/Interactive/InteractiveImportRow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/InteractiveImport/Interactive/InteractiveImportRow.js b/frontend/src/InteractiveImport/Interactive/InteractiveImportRow.js index 9d5ace190..19a340893 100644 --- a/frontend/src/InteractiveImport/Interactive/InteractiveImportRow.js +++ b/frontend/src/InteractiveImport/Interactive/InteractiveImportRow.js @@ -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;