diff --git a/src/UI/History/Queue/QueueView.js b/src/UI/History/Queue/QueueView.js index 64622ba62..c13413344 100644 --- a/src/UI/History/Queue/QueueView.js +++ b/src/UI/History/Queue/QueueView.js @@ -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) {