1
0
mirror of https://github.com/beestat/app.git synced 2025-08-11 09:13:50 -04:00

Merge pull request #422 from mikehosmar/patch-1

Fix: residual effects from temperature profiles modal
This commit is contained in:
Jon Ziebell 2025-07-31 07:09:52 -04:00 committed by GitHub
commit ab55d2499f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -42,8 +42,7 @@ beestat.component.modal.temperature_profiles_info.prototype.decorate_contents_ =
});
}
profile.deltas = deltas_converted;
const linear_trendline = beestat.math.get_linear_trendline(profile.deltas);
const linear_trendline = beestat.math.get_linear_trendline(deltas_converted);
fields.push({
'name': beestat.series['indoor_' + type + '_delta'].name,