diff options
-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} |