diff options
author | Jenkins CI <ci@sonarsource.com> | 2015-10-19 16:35:34 +0200 |
---|---|---|
committer | Jenkins CI <ci@sonarsource.com> | 2015-10-19 16:35:34 +0200 |
commit | 26817f2f1b31d777b681cc08f3a06db201521007 (patch) | |
tree | 5810a84e091fc6cc4c14f8ab88e941f5ac45c928 /server/sonar-web/src/main/js/apps/issues | |
parent | 04dd8ed3ace12b889258c7b07d1bb5abca673c6e (diff) | |
parent | 5ad6fee42b1b74f36c3df201fe37d14c969dec44 (diff) | |
download | sonarqube-26817f2f1b31d777b681cc08f3a06db201521007.tar.gz sonarqube-26817f2f1b31d777b681cc08f3a06db201521007.zip |
Automatic merge from branch-5.2
* origin/branch-5.2:
SONAR-6582 do not return module key on single-module projects
Use doc_values on some fields of ES index issues/issue
Improve ES request for facets resolutions, status and severities
fix display of issues filters manage link
correct profile comparison wording
SONAR-6926 remove Cross Project Duplication properties declaration
Diffstat (limited to 'server/sonar-web/src/main/js/apps/issues')
-rw-r--r-- | server/sonar-web/src/main/js/apps/issues/filters-view.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/apps/issues/filters-view.js b/server/sonar-web/src/main/js/apps/issues/filters-view.js index 50fdae86217..5556960a41b 100644 --- a/server/sonar-web/src/main/js/apps/issues/filters-view.js +++ b/server/sonar-web/src/main/js/apps/issues/filters-view.js @@ -19,6 +19,7 @@ export default Marionette.ItemView.extend({ var that = this; this.listenTo(options.app.state, 'change:filter', this.render); this.listenTo(options.app.state, 'change:changed', this.render); + this.listenTo(options.app.state, 'change:canManageFilters', this.render); this.listenTo(options.app.filters, 'reset', this.render); window.onSaveAs = window.onCopy = window.onEdit = function (id) { $('#modal').dialog('close'); |