Skip to content

Commit 99ea3a0

Browse files
neyser zananeyser zana
authored andcommitted
logo now shows on our devtool
2 parents 484f928 + 9c29456 commit 99ea3a0

File tree

10 files changed

+11
-25
lines changed

10 files changed

+11
-25
lines changed

build/hexagonFAT.png

355 KB
Loading

build/logo.png

-431 KB
Binary file not shown.

build/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
"ids": ["*"]
3030
},
3131
"icons": {
32-
"128": "logo.png"
32+
"128": "hexagonFAT.png"
3333
}
3434
}

build/webpack-bundle.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/webpack-bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/app.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ h2{
5050

5151
#logo{
5252
width: 50px;
53-
height: 80px;
53+
height: 50px;
5454
}
5555

5656
#treeWrapper{

public/assets/logo-card.png

-656 KB
Binary file not shown.

public/assets/logo-text.png

-1.44 MB
Binary file not shown.

src/containers/StateContainer.jsx

Lines changed: 5 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,9 @@ const StateContainer = ({ stateDiffs, clearLog }) => {
2222
return (
2323
<div className='stateDiff-div'>
2424
<span className='state-span'>
25-
<div key={i}>
26-
<div><b>{el.component}: </b>{Object.keys(el.oldState)[0]}</div>
27-
<div><b>Old: </b>{el.oldState[Object.keys(el.oldState)[0]]}</div>
28-
{/* <ReactJson
29-
src={el.oldState[Object.keys(el.oldState)[0]]}
25+
26+
<ReactJson
27+
src={el}
3028
name={null}
3129
iconStyle='triangle'
3230
indentWidth={1}
@@ -35,20 +33,8 @@ const StateContainer = ({ stateDiffs, clearLog }) => {
3533
collapsed={1}
3634
displayDataTypes={false}
3735
displayObjectSize={false}
38-
/> */}
39-
<div><b>New: </b>{el.newState[Object.keys(el.newState)[0]]}</div>
40-
{/* <ReactJson
41-
src={el.newState[Object.keys(el.newState)[0]]}
42-
name={null}
43-
iconStyle='triangle'
44-
indentWidth={1}
45-
groupArraysAfterLength={20}
46-
enableClipboard={false}
47-
collapsed={1}
48-
displayDataTypes={false}
49-
displayObjectSize={false}
50-
/> */}
51-
</div>
36+
/>
37+
5238
</span>
5339
</div>
5440
);

src/devtools.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ class App extends Component {
204204
<div id='app-container'>
205205
<div id='window'>
206206
<div id='window-nav'>
207-
<img id='logo' src='./lucidlogo-card-transparent.png' alt='devtool logo' />
207+
<img id='logo' src='./hexagonFAT.png' alt='devtool logo' />
208208
<button className='window-btn active' id='graphqlbtn' data-btn='Graphql' onClick={(e) => { this.handleWindowChange(e.target); }}>GraphQL</button>
209209
<button className='window-btn' id='reactbtn' data-btn='React' onClick={(e) => { this.handleWindowChange(e.target); }}>Component Tree</button>
210210
</div>

0 commit comments

Comments
 (0)