]> source.dussan.org Git - sonarqube.git/commitdiff
fix color of coverage rating on projects page
authorStas Vilchik <vilchiks@gmail.com>
Thu, 26 Jan 2017 11:29:50 +0000 (12:29 +0100)
committerStas Vilchik <vilchiks@gmail.com>
Thu, 26 Jan 2017 11:31:42 +0000 (12:31 +0100)
server/sonar-web/src/main/js/components/ui/CoverageRating.js

index 177bc35673d8b62e696315d69cdb272b62eea39c..82ecaae43480b7c7412b816ba0eebaa8003b74a6 100644 (file)
@@ -52,7 +52,7 @@ export default class CoverageRating extends React.Component {
       const value = Number(this.props.value);
       data = [
         { value, fill: this.props.muted ? '#bdbdbd' : '#00aa00' },
-        { value: 100 - value, fill: '#d4333f' }
+        { value: 100 - value, fill: this.props.muted ? '#f3f3f3' : '#d4333f' }
       ];
     }