diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-08-18 15:50:49 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-08-18 15:50:49 +0200 |
commit | 2cc874a266bae362d26b69ce0e8e8ed0d0708b67 (patch) | |
tree | 95c87a439166bd26965216917c2873c11f90d2af /server/sonar-web/src/main/js/apps/coding-rules | |
parent | 4c358f8ee89cddc977c8f1d9329c5ae22a0475c9 (diff) | |
download | sonarqube-2cc874a266bae362d26b69ce0e8e8ed0d0708b67.tar.gz sonarqube-2cc874a266bae362d26b69ce0e8e8ed0d0708b67.zip |
fix SONAR-6655 Activation criteria does not reset activation severity
Diffstat (limited to 'server/sonar-web/src/main/js/apps/coding-rules')
-rw-r--r-- | server/sonar-web/src/main/js/apps/coding-rules/facets/quality-profile-facet.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/coding-rules/facets/quality-profile-facet.js b/server/sonar-web/src/main/js/apps/coding-rules/facets/quality-profile-facet.js index b7af11147e4..5dbe32e62c1 100644 --- a/server/sonar-web/src/main/js/apps/coding-rules/facets/quality-profile-facet.js +++ b/server/sonar-web/src/main/js/apps/coding-rules/facets/quality-profile-facet.js @@ -73,7 +73,7 @@ define([ unsetActivation: function (e) { e.stopPropagation(); - this.options.app.state.updateFilter({ activation: 'false' }); + this.options.app.state.updateFilter({ activation: 'false', active_severities: null }); }, getToggled: function () { |