diff --git a/lib/report_plugins/treatments.js b/lib/report_plugins/treatments.js
index 7339b4f92a0..e6221c8b656 100644
--- a/lib/report_plugins/treatments.js
+++ b/lib/report_plugins/treatments.js
@@ -306,7 +306,7 @@ treatments.report = function report_treatments(datastorage, sorteddaystoshow, op
)
.append($('
').append(new Date(tr.created_at).toLocaleTimeString().replace(/([\d]+:[\d]{2})(:[\d]{2})(.*)/, '$1$3')))
.append($(' | ').append(tr.eventType ? translate(client.careportal.resolveEventName(tr.eventType)) : ''))
- .append($(' | ').attr('align','center').append(tr.glucose ? client.utils.scaleMgdl(tr.glucose) + ' ('+translate(tr.glucoseType)+')' : ''))
+ .append($(' | ').attr('align','center').append(tr.glucose ? tr.glucose + ' ('+translate(tr.glucoseType)+')' : ''))
.append($(' | ').attr('align','center').append(tr.insulin ? tr.insulin.toFixed(2) : ''))
.append($(' | ').attr('align','center').append(tr.carbs ? tr.carbs : ''))
.append($(' | ').attr('align','center').append(tr.duration ? tr.duration.toFixed(0) : ''))
|