mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
parent
f01a21ce43
commit
c9a36fe4b2
@ -61,6 +61,19 @@ var QueueCollection = PageableCollection.extend({
|
||||
|
||||
return Number.MAX_VALUE;
|
||||
}
|
||||
},
|
||||
|
||||
sizeleft : {
|
||||
sortValue : function(model, attr) {
|
||||
var size = model.get('size');
|
||||
var sizeleft = model.get('sizeleft');
|
||||
|
||||
if (size && sizeleft) {
|
||||
return sizeleft / size;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -61,7 +61,7 @@ module.exports = Marionette.Layout.extend({
|
||||
cellValue : 'this'
|
||||
},
|
||||
{
|
||||
name : 'episode',
|
||||
name : 'sizeleft',
|
||||
label : 'Progress',
|
||||
cell : ProgressCell,
|
||||
cellValue : 'this'
|
||||
|
Loading…
Reference in New Issue
Block a user