From d0dc42940f72439d80802b932e0cea7b38a16761 Mon Sep 17 00:00:00 2001 From: = Date: Wed, 13 Mar 2019 22:19:00 +0530 Subject: [PATCH] added missing img alt attribute in LoginwithGoogle.js --- chainkeeper_app/src/components/BlockPage.js | 2 +- chainkeeper_app/src/components/LoginwithGoogle.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chainkeeper_app/src/components/BlockPage.js b/chainkeeper_app/src/components/BlockPage.js index 2349769..e97b9e9 100644 --- a/chainkeeper_app/src/components/BlockPage.js +++ b/chainkeeper_app/src/components/BlockPage.js @@ -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()) diff --git a/chainkeeper_app/src/components/LoginwithGoogle.js b/chainkeeper_app/src/components/LoginwithGoogle.js index c54c37e..5e35267 100644 --- a/chainkeeper_app/src/components/LoginwithGoogle.js +++ b/chainkeeper_app/src/components/LoginwithGoogle.js @@ -45,7 +45,7 @@ class LoginwithGoogle extends Component { }; return (
- imageClick()} /> + google login imageClick()} />
); }