File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -77,9 +77,14 @@ const BarGraph = props => {
77
77
scroll : true ,
78
78
} ) ;
79
79
const keys = Object . keys ( data . componentData ) ;
80
+ console . log ( 'this is data in barGraph.tsx: ' , data ) ;
81
+ console . log ( 'these are the data\'s keys: ' , keys ) ;
80
82
81
83
// data accessor (used to generate scales) and formatter (add units for on hover box)
82
- const getSnapshotId = ( d : snapshot ) => d . snapshotId ;
84
+ const getSnapshotId = ( d : snapshot ) => {
85
+ console . log ( 'snapshot object here: ' , d ) ;
86
+ return d . snapshotId ;
87
+ } ;
83
88
const formatSnapshotId = id => `Snapshot ID: ${ id } ` ;
84
89
const formatRenderTime = time => `${ time } ms ` ;
85
90
Original file line number Diff line number Diff line change 13
13
},
14
14
"content_scripts" : [
15
15
{
16
- "matches" : [" <all_urls> " ],
16
+ "matches" : [" http://localhost/* " ],
17
17
"js" : [" bundles/content.bundle.js" ]
18
18
}
19
19
],
Original file line number Diff line number Diff line change 2
2
"compilerOptions" : {
3
3
"outDir" : " ./src/extension/build/bundles/" ,
4
4
"module" : " es6" ,
5
+ // "noImplicitAny": true,
5
6
"target" : " es5" ,
6
7
"jsx" : " react" ,
7
8
"removeComments" : true ,
You can’t perform that action at this time.
0 commit comments