mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
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:
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
$class = 'temperature';
|
||||
$unit = '°C';
|
||||
$unit = '°C';
|
||||
$graph_type = 'sensor_temperature';
|
||||
|
||||
require 'sensors.inc.php';
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
$graph_type = 'sensor_temperature';
|
||||
$sensor_class = 'temperature';
|
||||
$sensor_unit = '°C';
|
||||
$sensor_unit = '°C';
|
||||
$sensor_type = 'Temperature';
|
||||
|
||||
require 'includes/html/pages/device/overview/generic/sensor.inc.php';
|
||||
|
Reference in New Issue
Block a user