File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ const RadarChartCard = props => {
37
37
}
38
38
} ,
39
39
yaxis : {
40
+ max : 1 ,
41
+ min : 0 ,
40
42
tickAmount : 5 ,
41
43
labels : {
42
44
formatter : function ( val , i ) {
Original file line number Diff line number Diff line change @@ -27,13 +27,29 @@ const TraceExplanation = props => {
27
27
/>
28
28
) ;
29
29
} ;
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
+ } ;
30
42
return (
31
43
< Card className = "md-block-centered" >
32
44
< CardTitle title = "Trace Explanation" />
33
45
< CardText >
34
46
< h4 > Select the trace composition</ h4 >
35
47
{ getTraceSelector ( ) }
36
48
</ CardText >
49
+ < CardText >
50
+ < h4 > Models</ h4 >
51
+ { getMethods ( ) }
52
+ </ CardText >
37
53
< CardText >
38
54
< h2 > Trace table</ h2 >
39
55
< TraceTable jobs = { props . traceAttributes } />
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ class Full extends Component {
89
89
leftIcon : < FontIcon > list</ FontIcon > ,
90
90
} , {
91
91
component : Link ,
92
- to : '/validatiajon ' ,
92
+ to : '/validation ' ,
93
93
active : isActive ( '/validation' , pathname ) ,
94
94
primaryText : 'Validation' ,
95
95
leftIcon : < FontIcon > insert_chart</ FontIcon > ,
You can’t perform that action at this time.
0 commit comments