File tree Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -79,8 +79,6 @@ const BarGraphComparison = props => {
79
79
const [ maxRender , setMaxRender ] = React . useState ( data . maxTotalRender ) ;
80
80
81
81
function titleFilter ( comparisonArray ) {
82
- // const comparisonArrayModded = comparisonArray[0];
83
- console . log ( 'titleFilter' , comparisonArray ) ;
84
82
return comparisonArray . filter (
85
83
elem => elem . title . split ( '-' ) [ 1 ] === tabs [ currentTab ] . title . split ( '-' ) [ 1 ] ,
86
84
) ;
@@ -121,9 +119,6 @@ const BarGraphComparison = props => {
121
119
// with the render time of the current tab.
122
120
// The max render time will determine the Y-axis's highest number.
123
121
const calculateMaxTotalRender = series => {
124
- console . log ( comparison )
125
- console . log ( series )
126
- // let currentMax = 5
127
122
const currentSeriesBarStacks = ! comparison [ series ]
128
123
? [ ]
129
124
: comparison [ series ] . data . barStack ;
@@ -244,7 +239,6 @@ const BarGraphComparison = props => {
244
239
if ( testList [ i ] !== "" && ! finalList . includes ( testList [ i ] ) ) finalList . push ( testList [ i ] ) ;
245
240
}
246
241
console . log ( 'Final List' , finalList )
247
- // )
248
242
249
243
return (
250
244
< div >
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ export default function LinkControls({
118
118
/>
119
119
< datalist id = 'nodeOptions' >
120
120
{ nodeList . map ( node => (
121
- < option value = { node . name } > { node . name } </ option >
121
+ < option key = { node . name } value = { node . name } > { node . name } </ option >
122
122
) ) }
123
123
</ datalist >
124
124
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ const RenderingFrequency = props => {
14
14
const currentComponent = perfData [ componentName ] ;
15
15
return (
16
16
< ComponentCard
17
+ key = { componentName }
17
18
componentName = { componentName }
18
19
stateType = { currentComponent . stateType }
19
20
averageRenderTime = { (
You can’t perform that action at this time.
0 commit comments