Skip to content

Commit

Permalink
fix pointer bug in popular stocks
Browse files Browse the repository at this point in the history
removed link to stock page.
  • Loading branch information
sagivo committed Mar 13, 2018
1 parent 6015795 commit 4793a3e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "StockStalk",
"version": "1.0.2",
"version": "1.0.3",
"author": "FOO BAR",
"private": true,
"description": "Your stocks on your desktop",
"license": "MIT",
"main": "public/electron-starter.js",
"main": "build/electron-starter.js",
"repository": "github:sagivo/StockStalk",
"homepage": "./",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/Popular.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default class Popular extends Component {
{stocks.map(d => (
<tr key={d.index}>
<td>{d.index + 1}</td>
<td><a href="#a" onClick={() => this.link(d)}>{d.symbol}</a></td>
<td>{d.symbol}</td>
<td>{d.name}</td>
</tr>
))}
Expand Down
1 change: 0 additions & 1 deletion src/styles/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -241,4 +241,3 @@ html body h1 {
#stock-chart a {
color: #040d14;
}
/*# sourceMappingURL=app.css.map */

0 comments on commit 4793a3e

Please sign in to comment.