mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 01:23:53 -07:00
Queue UI no longer shows unknown ETAs as 0:00:00.
This commit is contained in:
parent
f304ad50d1
commit
cb0f7792f2
6 changed files with 20 additions and 11 deletions
|
@ -2,8 +2,9 @@
|
|||
|
||||
define(
|
||||
[
|
||||
'Cells/NzbDroneCell'
|
||||
], function (NzbDroneCell) {
|
||||
'Cells/NzbDroneCell',
|
||||
'filesize'
|
||||
], function (NzbDroneCell, fileSize) {
|
||||
return NzbDroneCell.extend({
|
||||
|
||||
className: 'timeleft-cell',
|
||||
|
@ -14,11 +15,15 @@ define(
|
|||
if (this.cellValue) {
|
||||
|
||||
var timeleft = this.cellValue.get('timeleft');
|
||||
var size = this.cellValue.get('size');
|
||||
var sizeleft = this.cellValue.get('sizeleft');
|
||||
var totalSize = fileSize(this.cellValue.get('size'), 1, false);
|
||||
var remainingSize = fileSize(this.cellValue.get('sizeleft'), 1, false);
|
||||
|
||||
this.$el.html(timeleft);
|
||||
this.$el.attr('title', '{0} MB / {1} MB'.format(sizeleft, size));
|
||||
if (timeleft === undefined) {
|
||||
this.$el.html("-");
|
||||
} else {
|
||||
this.$el.html(timeleft);
|
||||
}
|
||||
this.$el.attr('title', '{0} / {1}'.format(remainingSize, totalSize));
|
||||
}
|
||||
|
||||
return this;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue