We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d105a25 commit 784332aCopy full SHA for 784332a
web/client/examples/3dviewer/containers/Viewer.jsx
@@ -110,7 +110,7 @@ module.exports = connect((state) => {
110
messages: state.locale ? state.locale.messages : null,
111
locale: state.locale ? state.locale.current : null,
112
localeError: state.locale && state.locale.loadingError ? state.locale.loadingError : undefined,
113
- searchResults: state.searchResults,
+ searchResults: state.searchResults && state.searchResults.results ? state.searchResults.results : null,
114
mousePosition: state.mousePosition && state.mousePosition.position || null,
115
showGraticule: state.controls && state.controls.graticule || false,
116
marker: state.controls && state.controls.marker || null
0 commit comments