mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Added link to series from episode details
This commit is contained in:
parent
f028d2338e
commit
263700954e
5 changed files with 17 additions and 9 deletions
|
@ -65,6 +65,10 @@ define(
|
|||
}
|
||||
|
||||
this.episodeCollection = options.episodeCollection.bySeason(this.model.get('seasonNumber'));
|
||||
|
||||
_.each(this.episodeCollection.models, function (episode) {
|
||||
episode.set({ hideSeriesLink: true });
|
||||
});
|
||||
},
|
||||
|
||||
onShow: function () {
|
||||
|
|
|
@ -89,7 +89,8 @@ define(
|
|||
|
||||
defaults: {
|
||||
seasonNumber: 0,
|
||||
status : 0
|
||||
status : 0,
|
||||
title : 'TBA'
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -54,7 +54,6 @@ define(
|
|||
},
|
||||
route : function () {
|
||||
return '/series/' + this.get('titleSlug');
|
||||
//return '/series/details/' + this.get('id');
|
||||
},
|
||||
|
||||
qualityProfile: function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue