1
0
mirror of https://github.com/beestat/app.git synced 2026-05-30 02:52:28 -04:00

Fixed naming of summary chips

This commit is contained in:
Jon Ziebell
2026-02-10 18:12:26 -05:00
parent 1d60119ddd
commit 8e9d3719d0
2 changed files with 19 additions and 8 deletions
+16 -5
View File
@@ -467,7 +467,11 @@ beestat.component.card.runtime_thermostat_detail.prototype.decorate_runtime_chip
'color': beestat.series.compressor_cool_2.color
});
}
create_chip('Cool', beestat.series.compressor_cool_1.color, cool_segments);
create_chip(
beestat.series.compressor_cool_1.name.replace(/\d/, ''),
beestat.series.compressor_cool_1.color,
cool_segments
);
// Heat
var heat_segments = [];
@@ -483,7 +487,11 @@ beestat.component.card.runtime_thermostat_detail.prototype.decorate_runtime_chip
'color': beestat.series.compressor_heat_2.color
});
}
create_chip('Heat', beestat.series.compressor_heat_1.color, heat_segments);
create_chip(
beestat.series.compressor_heat_1.name.replace(/\d/, ''),
beestat.series.compressor_heat_1.color,
heat_segments
);
// Aux
var aux_segments = [];
@@ -499,11 +507,15 @@ beestat.component.card.runtime_thermostat_detail.prototype.decorate_runtime_chip
'color': beestat.series.auxiliary_heat_2.color
});
}
create_chip('Aux', beestat.series.auxiliary_heat_1.color, aux_segments);
create_chip(
beestat.series.auxiliary_heat_1.name.replace(/\d/, ''),
beestat.series.auxiliary_heat_1.color,
aux_segments
);
// Fan
if (totals.fan > 0) {
create_chip('Fan', beestat.series.fan.color, [{
create_chip(beestat.series.fan.name, beestat.series.fan.color, [{
'text': beestat.time(totals.fan),
'color': beestat.series.fan.color
}]);
@@ -521,7 +533,6 @@ beestat.component.card.runtime_thermostat_detail.prototype.decorate_runtime_chip
});
create_chip('Accessory', beestat.series.humidifier.color, accessory_segments);
if (has_chips === true) {
parent.appendChild(chip_container);
}
@@ -141,17 +141,17 @@ beestat.component.card.runtime_thermostat_summary.prototype.decorate_contents_ =
beestat.component.card.runtime_thermostat_summary.prototype.decorate_runtime_chips_ = function(parent, data) {
var groups = [
{
'label': 'Cool',
'label': beestat.series.sum_compressor_cool_1.name.replace(/\d/, ''),
'label_color': beestat.series.sum_compressor_cool_1.color,
'keys': ['sum_compressor_cool_1', 'sum_compressor_cool_2']
},
{
'label': 'Heat',
'label': beestat.series.sum_compressor_heat_1.name.replace(/\d/, ''),
'label_color': beestat.series.sum_compressor_heat_1.color,
'keys': ['sum_compressor_heat_1', 'sum_compressor_heat_2']
},
{
'label': 'Aux',
'label': beestat.series.auxiliary_heat_1.name.replace(/\d/, ''),
'label_color': beestat.series.sum_auxiliary_heat_1.color,
'keys': ['sum_auxiliary_heat_1', 'sum_auxiliary_heat_2']
}