Fix health temperature degree display (#15541)

* Fix health temperature degree display
It will be converted to html later. (otherwise it was double converted)

* Remove all ° it will only cause troubles
This commit is contained in:
Tony Murray
2023-11-01 14:35:35 -05:00
committed by GitHub
parent 183f9559f4
commit 95eab0d42e
4 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
<?php
$class = 'temperature';
$unit = '&deg;C';
$unit = '°C';
$graph_type = 'sensor_temperature';
require 'sensors.inc.php';

View File

@@ -2,7 +2,7 @@
$graph_type = 'sensor_temperature';
$sensor_class = 'temperature';
$sensor_unit = '&deg;C';
$sensor_unit = '°C';
$sensor_type = 'Temperature';
require 'includes/html/pages/device/overview/generic/sensor.inc.php';