diff options
Diffstat (limited to 'server/sonar-web')
-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); } |