diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-12-10 13:59:27 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-12-10 13:59:27 +0100 |
commit | c7b40a7a05a24721227b224e7a13c2e0bea6b14a (patch) | |
tree | fcebac93e6e36e1490fd888b7b3ef9697721a3d0 | |
parent | 30ca321a744b90f1a2db958f74fdeb3cb0522f0d (diff) | |
download | sonarqube-c7b40a7a05a24721227b224e7a13c2e0bea6b14a.tar.gz sonarqube-c7b40a7a05a24721227b224e7a13c2e0bea6b14a.zip |
SONAR-4624 fix location of label "muted" in the resolution facet
-rw-r--r-- | server/sonar-web/src/main/coffee/issues/facets/resolution-facet.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/coffee/issues/facets/resolution-facet.coffee b/server/sonar-web/src/main/coffee/issues/facets/resolution-facet.coffee index 2caed5ddb51..b017d613157 100644 --- a/server/sonar-web/src/main/coffee/issues/facets/resolution-facet.coffee +++ b/server/sonar-web/src/main/coffee/issues/facets/resolution-facet.coffee @@ -37,6 +37,6 @@ define [ sortValues: (values) -> - order = ['', 'FIXED', 'FALSE-POSITIVE', 'REMOVED'] + order = ['', 'FIXED', 'FALSE-POSITIVE', 'MUTED', 'REMOVED'] _.sortBy values, (v) -> order.indexOf v.val |