mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07:00
parent
fcf156293e
commit
800e7ae508
2 changed files with 10 additions and 0 deletions
|
@ -18,6 +18,10 @@ module.exports = NzbDroneCell.extend({
|
||||||
{
|
{
|
||||||
this.$el.html(movie.title + " (" + movie.year + ")" );
|
this.$el.html(movie.title + " (" + movie.year + ")" );
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.$el.html("Click to select movie");
|
||||||
|
}
|
||||||
|
|
||||||
this.delegateEvents();
|
this.delegateEvents();
|
||||||
return this;
|
return this;
|
||||||
|
|
|
@ -22,6 +22,12 @@ module.exports = Marionette.Layout.extend({
|
||||||
label : 'Title',
|
label : 'Title',
|
||||||
cell : 'String',
|
cell : 'String',
|
||||||
sortValue : 'title'
|
sortValue : 'title'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name : 'year',
|
||||||
|
label : 'Year',
|
||||||
|
cell : 'String',
|
||||||
|
sortValue : 'year'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue