Skip to content

Commit dd36c15

Browse files
CfrancCyrillebegarco
authored andcommitted
GUI bug fixes (#16)
* Fix #10 CSS style. * Fix #12. * Fix #13 CSS style.
1 parent 8c06bbc commit dd36c15

File tree

12 files changed

+323
-305
lines changed

12 files changed

+323
-305
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*
2+
* This file is part of sonar-icode-cnes-plugin.
3+
*
4+
* sonar-icode-cnes-plugin is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation, either version 3 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* sonar-icode-cnes-plugin is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with sonar-icode-cnes-plugin. If not, see <http://www.gnu.org/licenses/>.
16+
17+
*/
18+
package fr.cnes.sonarqube.plugins.icode.report;
19+
20+
public class ICodeReportReader {
21+
22+
}

src/main/js/components/MetricsBulletChart/BulletGraph/BulletGraph.js

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -36,28 +36,26 @@ class BulletGraph extends React.Component {
3636
}
3737

3838
render() {
39-
return ( <
40-
div className = "BulletGraph" >
41-
<
42-
HorizontalBulletGraph title = { this.props.title }
43-
textLabel = { this.props.textLabel }
44-
scaleMin = { this.props.scaleMin }
45-
scaleMax = { this.props.scaleMax }
46-
performanceVal = { this.props.performanceVal }
47-
symbolMarker = { this.props.symbolMarker }
48-
badVal = { this.props.badVal }
49-
satisfactoryVal = { this.props.satisfactoryVal }
50-
unitsSuffix = { this.props.unitsSuffix }
51-
unitsPrefix = { this.props.unitsPrefix }
52-
titleStyle = { this.props.titleStyle }
53-
textFont = { this.props.textFont }
54-
badColor = { this.props.badColor }
55-
satisfactoryColor = { this.props.satisfactoryColor }
56-
goodColor = { this.props.goodColor }
57-
height = { this.props.height }
58-
width = { this.props.width }
59-
/> < /
60-
div >
39+
return (
40+
<div className = "BulletGraph" >
41+
<HorizontalBulletGraph title = { this.props.title }
42+
textLabel = { this.props.textLabel }
43+
scaleMin = { this.props.scaleMin }
44+
scaleMax = { this.props.scaleMax }
45+
performanceVal = { this.props.performanceVal }
46+
symbolMarker = { this.props.symbolMarker }
47+
badVal = { this.props.badVal }
48+
satisfactoryVal = { this.props.satisfactoryVal }
49+
unitsSuffix = { this.props.unitsSuffix }
50+
unitsPrefix = { this.props.unitsPrefix }
51+
titleStyle = { this.props.titleStyle }
52+
textFont = { this.props.textFont }
53+
badColor = { this.props.badColor }
54+
satisfactoryColor = { this.props.satisfactoryColor }
55+
goodColor = { this.props.goodColor }
56+
height = { this.props.height }
57+
width = { this.props.width } />
58+
</div>
6159
);
6260
}
6361
};

0 commit comments

Comments
 (0)