From: Stas Vilchik Date: Fri, 8 Apr 2016 08:14:19 +0000 (+0200) Subject: SONAR-7402 fix formatting of differential measures X-Git-Tag: 5.6-RC1~295 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0a7949fca0551bc1295bed1b56ea6ccaffdc7156;p=sonarqube.git SONAR-7402 fix formatting of differential measures --- diff --git a/server/sonar-web/src/main/js/apps/component-measures/home/MeasureListValue.js b/server/sonar-web/src/main/js/apps/component-measures/home/MeasureListValue.js index f53460afbd1..3c61560f721 100644 --- a/server/sonar-web/src/main/js/apps/component-measures/home/MeasureListValue.js +++ b/server/sonar-web/src/main/js/apps/component-measures/home/MeasureListValue.js @@ -29,7 +29,7 @@ const MeasureListValue = ({ measure }) => { if (isDiffMetric(metric)) { return (
- {formatMeasure(measure.leak, measure.metric.key)} + {formatMeasure(measure.leak, measure.metric.type)}
); }