Skip to content

Commit 16325d2

Browse files
committed
small chages in lime api
1 parent 0892340 commit 16325d2

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

src/components/chart/RadarChartCard.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ const RadarChartCard = props => {
3737
}
3838
},
3939
yaxis: {
40+
max: 1,
41+
min: 0,
4042
tickAmount: 5,
4143
labels: {
4244
formatter: function (val, i) {

src/components/explanation/TraceExplanation.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,29 @@ const TraceExplanation = props => {
2727
/>
2828
);
2929
};
30+
31+
const getMethods = () => {
32+
return (
33+
<SelectField
34+
id="method-select"
35+
placeholder="Method id"
36+
className="md-cell"
37+
menuItems={['Method 1', 'Method 2']}
38+
position={SelectField.Positions.BELOW}
39+
/>
40+
);
41+
};
3042
return (
3143
<Card className="md-block-centered">
3244
<CardTitle title="Trace Explanation" />
3345
<CardText>
3446
<h4>Select the trace composition</h4>
3547
{getTraceSelector()}
3648
</CardText>
49+
<CardText>
50+
<h4>Models</h4>
51+
{getMethods()}
52+
</CardText>
3753
<CardText>
3854
<h2>Trace table</h2>
3955
<TraceTable jobs={props.traceAttributes} />

src/containers/Full/Full.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class Full extends Component {
8989
leftIcon: <FontIcon>list</FontIcon>,
9090
}, {
9191
component: Link,
92-
to: '/validatiajon',
92+
to: '/validation',
9393
active: isActive('/validation', pathname),
9494
primaryText: 'Validation',
9595
leftIcon: <FontIcon>insert_chart</FontIcon>,

0 commit comments

Comments
 (0)