diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-09-10 15:03:20 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-09-10 15:03:20 +0200 |
commit | fb5b91248d6e42717f66f23c79d40c91996d1194 (patch) | |
tree | 5c7ff2c3243f8be6dec12b5318fbdc959eff2ae7 | |
parent | 8600f6fb1ebd2d99e98d4a17a99528865a2db5cb (diff) | |
download | sonarqube-fb5b91248d6e42717f66f23c79d40c91996d1194.tar.gz sonarqube-fb5b91248d6e42717f66f23c79d40c91996d1194.zip |
increase the number of displayed computation reports
-rw-r--r-- | server/sonar-web/src/main/js/apps/computation/reports.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/computation/reports.js b/server/sonar-web/src/main/js/apps/computation/reports.js index 9c8144333bb..68b40269018 100644 --- a/server/sonar-web/src/main/js/apps/computation/reports.js +++ b/server/sonar-web/src/main/js/apps/computation/reports.js @@ -14,7 +14,7 @@ define([ }, fetch: function (options) { - var opts = _.defaults(options || {}, { q: this.q }, { q: 'history' }); + var opts = _.defaults(options || {}, { q: this.q }, { q: 'history', data: { ps: 250 } }); opts.url = baseUrl + '/api/computation/' + opts.q; this.q = opts.q; return Backbone.Collection.prototype.fetch.call(this, opts); |