diff --git a/src/fragments/forms/map-form/components/place-and-directions/components/route-details/route-details.js b/src/fragments/forms/map-form/components/place-and-directions/components/route-details/route-details.js
index 52c7b4e86..b8543fa5d 100644
--- a/src/fragments/forms/map-form/components/place-and-directions/components/route-details/route-details.js
+++ b/src/fragments/forms/map-form/components/place-and-directions/components/route-details/route-details.js
@@ -47,7 +47,7 @@ export default {
return location.href
},
startedPanelExtended () {
- return this.localMapViewData.routes.length === 1 ? 0 : null
+ return this.localMapViewData.routes.length > 0 ? 0 : null
},
/**
* Builds and return route summary
diff --git a/src/fragments/map-view/MapView.vue b/src/fragments/map-view/MapView.vue
index 79024bf69..bf473b82b 100644
--- a/src/fragments/map-view/MapView.vue
+++ b/src/fragments/map-view/MapView.vue
@@ -144,7 +144,7 @@
-
+