mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 00:53:57 -07:00
fixed card styling for import series
This commit is contained in:
parent
9160343a51
commit
942679d4bd
3 changed files with 15 additions and 10 deletions
|
@ -24,11 +24,14 @@ define(['app'], function () {
|
|||
|
||||
return start.format('{h}.{mm}{tt}');
|
||||
},
|
||||
end : function () {
|
||||
var start = Date.create(this.get('airDate'));
|
||||
var runtime = this.get('series').runtime;
|
||||
end : function () {
|
||||
|
||||
return start.addMinutes(runtime);
|
||||
if (this.has('series')) {
|
||||
var start = Date.create(this.get('airDate'));
|
||||
var runtime = this.get('series').runtime;
|
||||
|
||||
return start.addMinutes(runtime);
|
||||
}
|
||||
},
|
||||
statusLevel : function () {
|
||||
var episodeFileId = this.get('episodeFileId');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue