Skip to content

Commit

Permalink
Add react-app-rewired to package.json, fix svg ref
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Farro <[email protected]>
  • Loading branch information
tiffon committed Dec 23, 2017
1 parent 26f3fd9 commit 7779eb5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
"license": "MIT",
"proxy": {
"/api": {
"target": "http://localhost:16686",
"logLevel": "silent",
"secure": false,
"changeOrigin": true,
"ws": true,
"xfwd": true
"target": "http://localhost:16686",
"logLevel": "silent",
"secure": false,
"changeOrigin": true,
"ws": true,
"xfwd": true
}
},
"homepage": null,
Expand All @@ -31,6 +31,7 @@
"husky": "^0.14.3",
"lint-staged": "^4.0.3",
"prettier": "^1.5.3",
"react-app-rewired": "^1.4.0",
"react-scripts": "^1.0.11",
"react-test-renderer": "^15.6.1",
"sinon": "^3.2.1"
Expand Down
2 changes: 1 addition & 1 deletion src/components/SearchTracePage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default class SearchTracePage extends Component {
!hasTraceResults && (
<div className="ui middle aligned center aligned grid" style={{ marginTop: 100 }}>
<div className="column">
<img className="js-test-logo" alt="presentation" src={JaegerLogo} width="400" />
<img className="js-test-logo" alt="presentation" src={prefixUrl(JaegerLogo)} width="400" />
</div>
</div>
)}
Expand Down

0 comments on commit 7779eb5

Please sign in to comment.