From e1e94039aeeb040dd9c84e75824a82afe942809f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?F=C3=A9lix=20Baylac=20Jacqu=C3=A9?=
Date: Thu, 5 Oct 2023 21:35:51 +0200
Subject: [PATCH] Update tooltip message.
- Advertise the Netwo eligibility.
- Generate a fiber link for the ADSL-only connections. We sometimes
have outdated IPE data
---
webapp/templates/app.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/webapp/templates/app.js b/webapp/templates/app.js
index e9b8cbc..7765bc1 100644
--- a/webapp/templates/app.js
+++ b/webapp/templates/app.js
@@ -244,7 +244,7 @@ function updateEligData(map, eligData) {
// Enfin on affiche un lien vers le test d'éligibilté KOSC à cette adresse
} else if (/* building.fdnEligStatus.isEligible && */ building.othersEligStatus.isEligible) {
messageElig = `Fibre deployee mais pas chez Axione !`
- messageElig += `
Tester l'eligibilite par Kosc, Bouygues et Netwo
`
+ messageElig += `
Tester l'eligibilite par Kosc, Netwo et Bouygues
`
colorMarker = 'orange'
// Pas de données Kosc ou Axione mais l'ARCEP nous dit qu'une fibre est déployée à cette adresse
} else if (building.othersEligStatus.isEligible) {
@@ -262,7 +262,7 @@ function updateEligData(map, eligData) {
const street = encodeURIComponent(`${convertType} ${building.nomVoieImm}`)
const street_nb = encodeURIComponent(building.numVoieImm)
messageElig += `
Tester ADSL a cette adresse`
+ `>Tester ADSL a cette adresse
Si la fibre a été recemment installée chez vous, il se pourrait que ce test soit erroné, cliquez ici pour tout de même tester l'eligibilité fibre`
if (building.othersEligStatus.reasonNotEligible != "") {
messageElig += `
Status general ARCEP: ${building.othersEligStatus.reasonNotEligible}`
}