diff --git a/src/public/index.html b/src/public/index.html
index f96a489..b4ca342 100644
--- a/src/public/index.html
+++ b/src/public/index.html
@@ -1334,8 +1334,8 @@
Metrics will be shown in the selected format.
@@ -2078,7 +2078,7 @@
datasets: [
{
label: 'Temperature',
- suffix: 'ºC',
+ suffix: '°C',
borderColor: '#3b82f6',
backgroundColor: '#3b82f6',
pointStyle: false, // no points
@@ -2473,11 +2473,11 @@
formatTemperature: function(celsius) {
switch(this.configTemperatureFormat){
case "celsius": {
- return `${Number(celsius).toFixed(0)}ºC`;
+ return `${Number(celsius).toFixed(0)}°C`;
}
case "fahrenheit": {
const fahrenheit = this.celsiusToFahrenheit(celsius);
- return `${fahrenheit.toFixed(0)}ºF`;
+ return `${fahrenheit.toFixed(0)}°F`;
}
}
},
@@ -2493,8 +2493,8 @@
},
getTemperatureUnit: function() {
switch(this.configTemperatureFormat){
- case "celsius": return "ºC";
- case "fahrenheit": return "ºF";
+ case "celsius": return "°C";
+ case "fahrenheit": return "°F";
}
},
celsiusToFahrenheit: function(celsius) {