1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-16 21:15:33 -04:00

UI Enhancements for Manual Import (#681)

Fixes #589
Fixes #632
This commit is contained in:
Tim Turner
2017-02-09 16:25:51 -05:00
committed by GitHub
parent fcf156293e
commit 800e7ae508
2 changed files with 10 additions and 0 deletions

View File

@@ -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;

View File

@@ -22,6 +22,12 @@ module.exports = Marionette.Layout.extend({
label : 'Title',
cell : 'String',
sortValue : 'title'
},
{
name : 'year',
label : 'Year',
cell : 'String',
sortValue : 'year'
}
],