Skip to content

Commit

Permalink
Fix 3D Viewer GeoCoder
Browse files Browse the repository at this point in the history
  • Loading branch information
Gnafu committed Jul 12, 2016
1 parent d105a25 commit 784332a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/client/examples/3dviewer/containers/Viewer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ module.exports = connect((state) => {
messages: state.locale ? state.locale.messages : null,
locale: state.locale ? state.locale.current : null,
localeError: state.locale && state.locale.loadingError ? state.locale.loadingError : undefined,
searchResults: state.searchResults,
searchResults: state.searchResults && state.searchResults.results ? state.searchResults.results : null,
mousePosition: state.mousePosition && state.mousePosition.position || null,
showGraticule: state.controls && state.controls.graticule || false,
marker: state.controls && state.controls.marker || null
Expand Down

0 comments on commit 784332a

Please sign in to comment.