Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chainkeeper_app/src/components/BlockPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class BlockPage extends Component {

componentDidMount() {
this.setState({ isLoading: true });
let openVal = parseInt(this.props.match.params.id);
let openVal = parseInt(this.props.match.params.id,10);

fetch("http://192.248.22.171:8080/blocksci/api/v5/block/"+openVal)
.then(response => response.json())
Expand Down
2 changes: 1 addition & 1 deletion chainkeeper_app/src/components/LoginwithGoogle.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class LoginwithGoogle extends Component {
};
return (
<div>
<img className="google_login" src={require('../public/images/gmail_login.png')} style={{width:"200px"}} onClick={() => imageClick()} />
<img className="google_login" alt = "google login"src={require('../public/images/gmail_login.png')} style={{width:"200px"}} onClick={() => imageClick()} />
</div>
);
}
Expand Down