diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-11-04 13:22:14 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-11-04 13:22:14 +0100 |
commit | b4cf2dbd2f3858b6a4e79c7c5b7d758fedd887bd (patch) | |
tree | 6b055679d1e5c1f63aa10e36fca92aa2988598b8 | |
parent | 377cd3114a79d7b3f27bb176aebe301851acac9c (diff) | |
download | sonarqube-b4cf2dbd2f3858b6a4e79c7c5b7d758fedd887bd.tar.gz sonarqube-b4cf2dbd2f3858b6a4e79c7c5b7d758fedd887bd.zip |
SONAR-8300 reverse option of quality gate facet
-rw-r--r-- | server/sonar-web/src/main/js/apps/projects/filters/QualityGateFilter.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/projects/filters/QualityGateFilter.js b/server/sonar-web/src/main/js/apps/projects/filters/QualityGateFilter.js index 25e88a47861..e18f964a472 100644 --- a/server/sonar-web/src/main/js/apps/projects/filters/QualityGateFilter.js +++ b/server/sonar-web/src/main/js/apps/projects/filters/QualityGateFilter.js @@ -36,7 +36,7 @@ export default class QualityGateFilter extends React.Component { return ( <FilterContainer property="gate" - options={['ERROR', 'WARN', 'OK']} + options={['OK', 'WARN', 'ERROR']} renderName={() => 'Quality Gate'} renderOption={this.renderOption} getFacetValueForOption={this.getFacetValueForOption} |