File tree Expand file tree Collapse file tree 3 files changed +14
-15
lines changed Expand file tree Collapse file tree 3 files changed +14
-15
lines changed Original file line number Diff line number Diff line change @@ -214,12 +214,11 @@ const BarGraph = (props) => {
214
214
fontSize = { 12 }
215
215
fill = "#FFFFFF"
216
216
>
217
- { ' ' }
218
- Rendering Time (ms){ ' ' }
217
+ Rendering Time (ms)
219
218
</ Text >
220
- < Text x = { xMax / 2 } y = { yMax + 65 } fontSize = { 12 } fill = "#FFFFFF" >
221
- { ' ' }
222
- Snapshot Id { ' ' }
219
+ < br / >
220
+ < Text x = { ( xMax / 2 ) + 15 } y = { yMax + 70 } fontSize = { 12 } fill = "#FFFFFF" >
221
+ Snapshot ID
223
222
</ Text >
224
223
</ svg >
225
224
{ /* FOR HOVER OVER DISPLAY */ }
Original file line number Diff line number Diff line change @@ -136,18 +136,18 @@ const StateRoute = (props: StateRouteProps) => {
136
136
return (
137
137
< Router >
138
138
< div className = "navbar" >
139
- < NavLink
139
+ < NavLink className = "router-link"
140
+ activeClassName = "is-active"
141
+ exact to = "/" >
142
+ Map
143
+ </ NavLink >
144
+ < NavLink
140
145
className = "router-link"
141
146
activeClassName = "is-active"
142
- exact to = "/"
147
+ to = "/performance "
143
148
>
144
149
Performance
145
150
</ NavLink >
146
- < NavLink className = "router-link"
147
- activeClassName = "is-active"
148
- to = "/map" >
149
- Map
150
- </ NavLink >
151
151
< NavLink
152
152
className = "router-link"
153
153
activeClassName = "is-active"
@@ -175,11 +175,11 @@ const StateRoute = (props: StateRouteProps) => {
175
175
176
176
</ div >
177
177
< Switch >
178
- < Route path = "/map " render = { renderComponentMap } />
178
+ < Route path = "/performance " render = { renderPerfView } />
179
179
< Route path = "/history" render = { renderHistory } />
180
180
< Route path = "/relationship" render = { renderAtomsRelationship } />
181
181
< Route path = "/tree" render = { renderTree } />
182
- < Route path = "/" render = { renderPerfView } />
182
+ < Route path = "/" render = { renderComponentMap } />
183
183
</ Switch >
184
184
</ Router >
185
185
) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " Reactime" ,
3
- "version" : " 7 .0.0" ,
3
+ "version" : " 8 .0.0" ,
4
4
"devtools_page" : " devtools.html" ,
5
5
"description" : " A Chrome extension that helps debug React applications by memorizing the state of components with every render." ,
6
6
"manifest_version" : 2 ,
You can’t perform that action at this time.
0 commit comments