]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7068 apply feedback
authorStas Vilchik <vilchiks@gmail.com>
Thu, 26 Nov 2015 08:29:45 +0000 (09:29 +0100)
committerStas Vilchik <vilchiks@gmail.com>
Thu, 26 Nov 2015 08:29:45 +0000 (09:29 +0100)
server/sonar-web/src/main/js/apps/overview/main/coverage.js
server/sonar-web/src/main/js/apps/overview/main/duplications.js

index 1e37aac5139b2a6ff33c37bcd0f3cbd34da555e6..e30a1919483952972e562cf2695db120dc576111 100644 (file)
@@ -83,10 +83,10 @@ export const GeneralCoverage = React.createClass({
       <DomainPanel domain="coverage">
         <DomainNutshell>
           <MeasuresList>
-            <Measure composite={true}>
-              <DonutChart width="48" height="48" thickness="6" data={donutData}/>
-            </Measure>
             <Measure label={getMetricName('coverage')}>
+              <span className="big-spacer-right">
+                <DonutChart width="40" height="40" thickness="3" data={donutData}/>
+              </span>
               <DrilldownLink component={this.props.component.key} metric={coverageMetric}>
                 <span className="js-overview-main-coverage">
                   {formatMeasure(this.props.measures[coverageMetric], 'PERCENT')}
index 18db99bb3c77979edd0002415bb3b1700691aff9..9e6a93f4b78c358b7c57010f3fe50a9d35b7eaed 100644 (file)
@@ -56,10 +56,10 @@ export const GeneralDuplications = React.createClass({
       <DomainPanel domain="duplications">
         <DomainNutshell>
           <MeasuresList>
-            <Measure composite={true}>
-              <DonutChart width="48" height="48" thickness="6" data={donutData}/>
-            </Measure>
             <Measure label={getMetricName('duplications')}>
+              <span className="big-spacer-right">
+                <DonutChart width="40" height="40" thickness="3" data={donutData}/>
+              </span>
               <DrilldownLink component={this.props.component.key} metric="duplicated_lines_density">
                 {formatMeasure(this.props.measures['duplicated_lines_density'], 'PERCENT')}
               </DrilldownLink>