aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2014-12-10 13:59:27 +0100
committerSimon Brandhof <simon.brandhof@sonarsource.com>2014-12-10 13:59:27 +0100
commitc7b40a7a05a24721227b224e7a13c2e0bea6b14a (patch)
treefcebac93e6e36e1490fd888b7b3ef9697721a3d0
parent30ca321a744b90f1a2db958f74fdeb3cb0522f0d (diff)
downloadsonarqube-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.coffee2
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