Skip to content

Commit

Permalink
Apply suggestion from review
Browse files Browse the repository at this point in the history
  • Loading branch information
offtherailz committed Apr 2, 2019
1 parent aa5774d commit 1b2ce80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/client/components/data/identify/IdentifyContainer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ module.exports = props => {
}
const Viewer = viewer;
// TODO: put all the header (Toolbar, navigation, coordinate editor) outside the container
const buttons = getToolButtons({...props, lngCorrected, validResponses, latlng});
const toolButtons = getToolButtons({...props, lngCorrected, validResponses, latlng});
const missingResponses = requests.length - responses.length;
const revGeocodeDisplayName = reverseGeocodeData.error ? <Message msgId="identifyRevGeocodeError"/> : reverseGeocodeData.display_name;
return (
Expand Down Expand Up @@ -113,7 +113,7 @@ module.exports = props => {
<Col key="tools" xs={12}>
<Toolbar
btnDefaultProps={{ bsStyle: 'primary', className: 'square-button-md' }}
buttons={buttons}/>
buttons={toolButtons}/>
</Col>
<div key="navigation" style={{
position: "absolute",
Expand Down

0 comments on commit 1b2ce80

Please sign in to comment.