Skip to content

Commit

Permalink
Mobile: fixed scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
Brugarolas committed Jan 18, 2019
1 parent 8394a79 commit 3874945
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v1.4.1
Mobile fixes

## v1.4.0
Smoother start up
Animation code simplified
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"main": "webpack.config.js",
"scripts": {
"start": "webpack-dev-server --open --config ./webpack.config.js --mode development",
"remote": "webpack-dev-server --hot --host 0.0.0.0 --port 3000 --config ./webpack.config.js --mode development",
"build": "webpack -p --mode production",
"analyzer": "webpack -p --mode production --analyzer",
"gh-pages": "webpack -p --mode production --publicPath bruga-weather"
Expand All @@ -24,7 +25,7 @@
"reselect": "^4.0.0",
"react-flip-move": "^3.0.3",
"@fortawesome/fontawesome-free": "^5.6.3",
"@andres-brugarolas/swing": "^3.1.4",
"@andres-brugarolas/swing": "^3.1.5",
"unfetch": "^4.0.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/ui/components/search-city-form.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class SearchCityForm extends Component {
}

handleChangeCity = (event) => {
this.setState({cityName: event.target.value});
this.setState({ cityName: event.target.value });
}

searchCity = (event) => {
Expand Down

0 comments on commit 3874945

Please sign in to comment.