diff --git a/js/main.js b/js/main.js
index c5c5f7b..dc03fa4 100644
--- a/js/main.js
+++ b/js/main.js
@@ -139,7 +139,7 @@ class WindSimulation {
var i = this.wms.indexOf(wm);
var follower = document.getElementById("follower");
var perc = Math.round(this.simulationPot[i] * 100 / 14.95);
- follower.innerHTML = "
Aerogenerador Nº" + (i + 1) + "" + (Math.round(this.simulationPot[i] * 100) / 100) + ' GWh
' + this.divPercentBar(perc, 50) + '
' + perc + '% ' + (perc < 50 ? '⚠️' : '');
+ follower.innerHTML = "Aerogenerador Nº" + (i + 1) + "" + (Math.round(this.simulationPot[i] * 100) / 100) + ' GWh
' + this.divPercentBar(perc, 50) + '
' + perc + '% ' + (perc < 50 ? EXCLAMATION : '');
follower.style.display = "block";
}
}