From 65b936ed94a172fd76a8f69451cdc52a75d8e5d1 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 18 Jun 2017 22:15:44 -0700 Subject: [PATCH] Fixed: Time left cell for pending items in queue --- src/UI/Activity/Queue/TimeleftCell.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UI/Activity/Queue/TimeleftCell.js b/src/UI/Activity/Queue/TimeleftCell.js index a7420c3d8..145afceb2 100644 --- a/src/UI/Activity/Queue/TimeleftCell.js +++ b/src/UI/Activity/Queue/TimeleftCell.js @@ -14,7 +14,7 @@ module.exports = NzbDroneCell.extend({ var ect = this.cellValue.get('estimatedCompletionTime'); var time = '{0} at {1}'.format(FormatHelpers.relativeDate(ect), moment(ect).format(UiSettingsModel.time(true, false))); - if (status === 'pending') { + if (status === 'delay') { this.$el.html('
-
'.format(time)); } else if (status === 'downloadclientunavailable') { this.$el.html('
-
'.format(time));