mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-30 15:37:55 +02:00
Queue count above history shows count for all items and won't show error erroneously
This commit is contained in:
@@ -20,10 +20,10 @@ define(
|
||||
return this;
|
||||
}
|
||||
|
||||
var count = QueueCollection.length;
|
||||
var count = QueueCollection.fullCollection.length;
|
||||
var label = 'label-info';
|
||||
var errors = QueueCollection.some(function (model) {
|
||||
return model.get('errorMessage') !== '';
|
||||
var errors = QueueCollection.fullCollection.some(function (model) {
|
||||
return model.has('errorMessage');
|
||||
});
|
||||
|
||||
if (errors) {
|
||||
|
Reference in New Issue
Block a user