diff --git a/client/web/discovery/src/components/Search.vue b/client/web/discovery/src/components/Search.vue index 59899ef80..934f30229 100644 --- a/client/web/discovery/src/components/Search.vue +++ b/client/web/discovery/src/components/Search.vue @@ -309,7 +309,7 @@ export default { if (isGeometry) { value.forEach(coordinates => { coordinates = JSON.parse(coordinates || '{}').coordinates - if (coordinates) { + if (coordinates && coordinates.length) { markers.push({ id, coordinates }) } })