From 23cefc38349fc04e6e127b3bf884a83afe0425ed Mon Sep 17 00:00:00 2001 From: Jon Ziebell Date: Tue, 17 Dec 2019 21:12:20 -0500 Subject: [PATCH] Fixed #200 - Runtime Detail missing tenths of a degree I had to go out of my way to break this originally; not sure what I was thinking. Restored single decimal place. --- js/component/chart/runtime_detail.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/component/chart/runtime_detail.js b/js/component/chart/runtime_detail.js index a07c167..309322d 100644 --- a/js/component/chart/runtime_detail.js +++ b/js/component/chart/runtime_detail.js @@ -312,8 +312,7 @@ beestat.component.chart.runtime_detail.prototype.get_options_tooltip_formatter_ value = beestat.temperature({ 'temperature': values[point.series.name], 'convert': false, - 'units': true, - 'round': 0 + 'units': true }); } else if (point.series.name.includes('humidity') === true) { group = 'data';