diff --git a/src/UI/ManualImport/Cells/MovieCell.js b/src/UI/ManualImport/Cells/MovieCell.js index 8849f8ea3..ebd2f6261 100644 --- a/src/UI/ManualImport/Cells/MovieCell.js +++ b/src/UI/ManualImport/Cells/MovieCell.js @@ -18,6 +18,10 @@ module.exports = NzbDroneCell.extend({ { this.$el.html(movie.title + " (" + movie.year + ")" ); } + else + { + this.$el.html("Click to select movie"); + } this.delegateEvents(); return this; diff --git a/src/UI/ManualImport/Movie/SelectMovieLayout.js b/src/UI/ManualImport/Movie/SelectMovieLayout.js index ecde63b54..d22818f21 100644 --- a/src/UI/ManualImport/Movie/SelectMovieLayout.js +++ b/src/UI/ManualImport/Movie/SelectMovieLayout.js @@ -22,6 +22,12 @@ module.exports = Marionette.Layout.extend({ label : 'Title', cell : 'String', sortValue : 'title' + }, + { + name : 'year', + label : 'Year', + cell : 'String', + sortValue : 'year' } ],