Skip to content

Commit 784332a

Browse files
committed
Fix 3D Viewer GeoCoder
1 parent d105a25 commit 784332a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/client/examples/3dviewer/containers/Viewer.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ module.exports = connect((state) => {
110110
messages: state.locale ? state.locale.messages : null,
111111
locale: state.locale ? state.locale.current : null,
112112
localeError: state.locale && state.locale.loadingError ? state.locale.loadingError : undefined,
113-
searchResults: state.searchResults,
113+
searchResults: state.searchResults && state.searchResults.results ? state.searchResults.results : null,
114114
mousePosition: state.mousePosition && state.mousePosition.position || null,
115115
showGraticule: state.controls && state.controls.graticule || false,
116116
marker: state.controls && state.controls.marker || null

0 commit comments

Comments
 (0)