Run prettier

This commit is contained in:
Mikko Koski 2017-05-19 11:01:49 +03:00
parent d3425439c5
commit f2270077f6

View file

@ -289,11 +289,11 @@ class LocationAutocompleteInput extends Component {
}
handlePredictionsSelectStart() {
this.setState({selectionInProgress: true})
this.setState({ selectionInProgress: true });
}
handlePredictionsSelectEnd(index) {
this.setState({selectionInProgress: false});
this.setState({ selectionInProgress: false });
this.selectItem(index);
this.finalizeSelection();
}