diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-05-05 10:10:47 +0200 |
---|---|---|
committer | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-05-09 11:15:45 +0200 |
commit | f6d2629b313ffa71633fecd02bc430e154ca5aba (patch) | |
tree | 9f534ea4a53e6588d94647e2fbbec6a7b78fd0a5 /server/sonar-web/src/main/js/apps/update-center | |
parent | ab64e97deecaf047d85debdd1ba669e1d4071d51 (diff) | |
download | sonarqube-f6d2629b313ffa71633fecd02bc430e154ca5aba.tar.gz sonarqube-f6d2629b313ffa71633fecd02bc430e154ca5aba.zip |
SONAR-8836 Always display categories in installed plugins page
Diffstat (limited to 'server/sonar-web/src/main/js/apps/update-center')
-rw-r--r-- | server/sonar-web/src/main/js/apps/update-center/plugins.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/update-center/plugins.js b/server/sonar-web/src/main/js/apps/update-center/plugins.js index 9062db7da2f..3cb1cb45ef5 100644 --- a/server/sonar-web/src/main/js/apps/update-center/plugins.js +++ b/server/sonar-web/src/main/js/apps/update-center/plugins.js @@ -67,7 +67,7 @@ const Plugins = Backbone.Collection.extend({ const that = this; const opts = { type: 'GET', - url: window.baseUrl + '/api/plugins/installed', + url: window.baseUrl + '/api/plugins/installed?f=category', success(r) { that._installed = that.parse(r); } |