Skip to content

Commit 80c5fba

Browse files
committed
Removed extraneous characters, prioritized Map component in Navbar, updated manifest to 8.0.0
> > Co-authored-by: kev-ngo <[email protected]> Co-authored-by: CourageWolf <[email protected]> Co-authored-by: DennisLpz <[email protected]> Co-authored-by: demircaner <[email protected]>
1 parent 3970662 commit 80c5fba

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

src/app/components/BarGraph.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -214,12 +214,11 @@ const BarGraph = (props) => {
214214
fontSize={12}
215215
fill="#FFFFFF"
216216
>
217-
{' '}
218-
Rendering Time (ms){' '}
217+
Rendering Time (ms)
219218
</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
223222
</Text>
224223
</svg>
225224
{/* FOR HOVER OVER DISPLAY */}

src/app/components/StateRoute.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -136,18 +136,18 @@ const StateRoute = (props: StateRouteProps) => {
136136
return (
137137
<Router>
138138
<div className="navbar">
139-
<NavLink
139+
<NavLink className="router-link"
140+
activeClassName="is-active"
141+
exact to="/">
142+
Map
143+
</NavLink>
144+
<NavLink
140145
className="router-link"
141146
activeClassName="is-active"
142-
exact to="/"
147+
to="/performance"
143148
>
144149
Performance
145150
</NavLink>
146-
<NavLink className="router-link"
147-
activeClassName="is-active"
148-
to="/map">
149-
Map
150-
</NavLink>
151151
<NavLink
152152
className="router-link"
153153
activeClassName="is-active"
@@ -175,11 +175,11 @@ const StateRoute = (props: StateRouteProps) => {
175175

176176
</div>
177177
<Switch>
178-
<Route path="/map" render={renderComponentMap} />
178+
<Route path="/performance" render={renderPerfView} />
179179
<Route path="/history" render={renderHistory} />
180180
<Route path="/relationship" render={renderAtomsRelationship} />
181181
<Route path="/tree" render={renderTree} />
182-
<Route path="/" render={renderPerfView} />
182+
<Route path="/" render={renderComponentMap} />
183183
</Switch>
184184
</Router>
185185
);

src/extension/build/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Reactime",
3-
"version": "7.0.0",
3+
"version": "8.0.0",
44
"devtools_page": "devtools.html",
55
"description": "A Chrome extension that helps debug React applications by memorizing the state of components with every render.",
66
"manifest_version": 2,

0 commit comments

Comments
 (0)