UI Enhancements for Manual Import (#681)

Fixes #589
Fixes #632
Tim Turner 8 years ago committed by GitHub
parent fcf156293e
commit 800e7ae508

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

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

Loading…
Cancel
Save