1
0
Fork 0
mirror of https://github.com/ConnectedHumber/Air-Quality-Web synced 2025-03-22 23:44:56 +00:00

[client] Bugfix: Select reading type defs correctly

This commit is contained in:
Starbeamrainbowlabs 2019-02-20 18:51:45 +00:00
parent fc3723a924
commit 1449c22783
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -249,7 +249,7 @@ class DeviceReadingDisplay {
if(new_data_obj.data == null) return false;
// Update the colour & suggested min/max values
let def = this.reading_type_defs[this.reading_type.id],
let def = this.reading_type_defs[this.reading_type.short_descr],
y_axis = this.chart.options.scales.yAxes[0];
if(typeof def !== "undefined") {
new_data_obj.borderColor = def.borderColor;