diff options
Diffstat (limited to 'server/sonar-web/src/main/js/quality-profiles/app.js')
-rw-r--r-- | server/sonar-web/src/main/js/quality-profiles/app.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/quality-profiles/app.js b/server/sonar-web/src/main/js/quality-profiles/app.js index d139f2b17b5..e2650a470ff 100644 --- a/server/sonar-web/src/main/js/quality-profiles/app.js +++ b/server/sonar-web/src/main/js/quality-profiles/app.js @@ -46,7 +46,9 @@ require([ collection: this.profiles, canWrite: this.canWrite }); - this.layout.actionsRegion.show(this.actionsView); + this.actionsView.requestLanguages().done(function () { + App.layout.actionsRegion.show(App.actionsView); + }); // Profiles View this.profilesView = new ProfilesView({ |