From 75a91261680507cf37d5ddddb7268c441be38577 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Thu, 18 Dec 2014 15:51:26 +0100 Subject: [PATCH] SONAR-5962 The size of the analysis reports queue is wrong --- .../src/main/coffee/analysis-reports/views/actions-view.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/sonar-web/src/main/coffee/analysis-reports/views/actions-view.coffee b/server/sonar-web/src/main/coffee/analysis-reports/views/actions-view.coffee index 237485c18e6..12608b30d87 100644 --- a/server/sonar-web/src/main/coffee/analysis-reports/views/actions-view.coffee +++ b/server/sonar-web/src/main/coffee/analysis-reports/views/actions-view.coffee @@ -31,4 +31,4 @@ define [ serializeData: -> _.extend super, state: @options.app.state.toJSON() - total: @collection.paging.total || 0 + total: @collection.paging.total || @collection.length -- 2.39.5