From 58e959315edeef7b8e2d5f8fc482ad771e6dda05 Mon Sep 17 00:00:00 2001 From: DESPRES Damien <ddespres@neogeo.fr> Date: Tue, 30 Nov 2021 14:19:28 +0100 Subject: [PATCH] fix duplicate /geocontrib in url --- src/assets/js/map-util.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/assets/js/map-util.js b/src/assets/js/map-util.js index 84dc6f60..d48ea574 100644 --- a/src/assets/js/map-util.js +++ b/src/assets/js/map-util.js @@ -495,13 +495,13 @@ const mapUtil = { return ` <h4> - <a href="${store.state.configuration.BASE_URL.slice(0, -1)}${feature_url}">${feature.properties.title}</a> + <a href="${feature_url}">${feature.properties.title}</a> </h4> <div> Statut : ${status} </div> <div> - Type : <a href="${store.state.configuration.BASE_URL.slice(0, -1)}${feature_type_url}"> ${feature_type.title} </a> + Type : <a href="${feature_type_url}"> ${feature_type.title} </a> </div> <div> Dernière mise à jour : ${date_maj} -- GitLab