1
0
mirror of https://github.com/beestat/app.git synced 2025-07-09 03:04:07 -04:00

Minor cosmetic fixes

This commit is contained in:
Jon Ziebell 2019-07-23 20:19:16 -04:00
parent c37e3be9af
commit 7c0b088996
2 changed files with 4 additions and 2 deletions

View File

@ -472,6 +472,7 @@ class ecobee_runtime_thermostat extends cora\crud {
$query = '
select
`ecobee_thermostat_id`,
`ecobee_runtime_thermostat_id`,
`timestamp`,
cast(greatest(0, (cast(`compressor_heat_1` as signed) - cast(`compressor_heat_2` as signed))) as unsigned) `compressor_heat_1`,

View File

@ -290,7 +290,7 @@ beestat.component.card.aggregate_runtime.prototype.decorate_contents_ = function
'units': true,
'round': 0
});
value += ' 🢒 ';
value += ' to ';
value += beestat.temperature({
'temperature': series.min_max_outdoor_temperature.data[this.x].max,
'convert': false,
@ -317,7 +317,8 @@ beestat.component.card.aggregate_runtime.prototype.decorate_contents_ = function
return beestat.component.chart.tooltip_formatter(
label_parts.join(' '),
sections
sections,
150
);
}
};