File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -78,13 +78,13 @@ const BarGraph = props => {
78
78
} ) ;
79
79
const keys = Object . keys ( data . componentData ) ;
80
80
console . log ( 'this is data in barGraph.tsx: ' , data ) ;
81
- console . log ( 'these are the data\'s keys: ' , keys )
81
+ console . log ( 'these are the data\'s keys: ' , keys ) ;
82
82
83
83
// data accessor (used to generate scales) and formatter (add units for on hover box)
84
84
const getSnapshotId = ( d : snapshot ) => {
85
85
console . log ( 'snapshot object here: ' , d ) ;
86
86
return d . snapshotId ;
87
- }
87
+ } ;
88
88
const formatSnapshotId = id => `Snapshot ID: ${ id } ` ;
89
89
const formatRenderTime = time => `${ time } ms ` ;
90
90
@@ -104,8 +104,6 @@ const BarGraph = props => {
104
104
range : schemeSet3 ,
105
105
} ) ;
106
106
107
- console . log ( )
108
-
109
107
// setting max dimensions and scale ranges
110
108
const xMax = width - margin . left - margin . right ;
111
109
const yMax = height - margin . top - 150 ;
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