8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-19 09:02:35 +00:00

fix: Remove unnecessary style color in footprint aff_profil.html

This commit is contained in:
Jean-Romain Garnier 2021-12-24 14:35:11 +01:00 committed by jr-garnier
parent d69c46ded1
commit a789640bec

View file

@ -76,7 +76,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
success: function(data) {
if (data["error"] != null) {
td.innerHTML = "<i class=\"text-danger\">" + data["error"] + "</i>";
td.style.color = "red";
} else if (data["data"] != null) {
td.innerHTML = data["data"] + " {% trans 'GiB/month' %}";
} else {