Skip to content
Snippets Groups Projects
Commit 91d8c5b8 authored by Hugo SUBTIL's avatar Hugo SUBTIL
Browse files

publish: fix(email): update mail title

generated from commit 254dde13
parent 838f5452
Branches
No related tags found
No related merge requests found
...@@ -143471,7 +143471,7 @@ const buildConsumptionText = async client => { ...@@ -143471,7 +143471,7 @@ const buildConsumptionText = async client => {
if (value > 0) { if (value > 0) {
text += '<span class="elec-text">+&nbsp;' + (value * 100).toFixed(2) + "&nbsp;%&nbsp;d'électricité</span>"; text += '<span class="elec-text">+&nbsp;' + (value * 100).toFixed(2) + "&nbsp;%&nbsp;d'électricité</span>";
} else { } else {
text += '<span class="elec-text">' + (value * 100).toFixed(2) + "&nbsp;%&nbsp;d'électricité</span>"; text += '<span class="elec-text">-&nbsp;' + Math.abs(value * 100).toFixed(2) + "&nbsp;%&nbsp;d'électricité</span>";
} }
} }
} }
...@@ -143487,7 +143487,7 @@ const buildConsumptionText = async client => { ...@@ -143487,7 +143487,7 @@ const buildConsumptionText = async client => {
if (value > 0) { if (value > 0) {
text += '<span class="gas-text">+&nbsp;' + (value * 100).toFixed(2) + '&nbsp;%&nbsp;de&nbsp;gaz</span>'; text += '<span class="gas-text">+&nbsp;' + (value * 100).toFixed(2) + '&nbsp;%&nbsp;de&nbsp;gaz</span>';
} else { } else {
text += '<span class="gas-text">' + (value * 100).toFixed(2) + '&nbsp;%&nbsp;de&nbsp;gaz</span>'; text += '<span class="gas-text">-&nbsp;' + Math.abs(value * 100).toFixed(2) + '&nbsp;%&nbsp;de&nbsp;gaz</span>';
} }
} }
} }
...@@ -143503,7 +143503,7 @@ const buildConsumptionText = async client => { ...@@ -143503,7 +143503,7 @@ const buildConsumptionText = async client => {
if (value > 0) { if (value > 0) {
text += '<span class="water-text">+&nbsp;' + (value * 100).toFixed(2) + "&nbsp;%&nbsp;d'eau</span>"; text += '<span class="water-text">+&nbsp;' + (value * 100).toFixed(2) + "&nbsp;%&nbsp;d'eau</span>";
} else { } else {
text += '<span class="water-text">' + (value * 100).toFixed(2) + "&nbsp;%&nbsp;d'eau</span>"; text += '<span class="water-text">-&nbsp;' + Math.abs(value * 100).toFixed(2) + "&nbsp;%&nbsp;d'eau</span>";
} }
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment