De-inlined inlined values

pull/4406/head
Frank Elsinga 2 months ago committed by GitHub
parent 64b05a9b87
commit d2b6fe8b05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -157,8 +157,7 @@ class UptimeCalculator {
};
}
let key = bean.timestamp;
this.hourlyUptimeDataList.push(key, data);
this.hourlyUptimeDataList.push(bean.timestamp, data);
}
// Load daily data from database (recent 365 days only)
@ -183,8 +182,7 @@ class UptimeCalculator {
};
}
let key = bean.timestamp;
this.dailyUptimeDataList.push(key, data);
this.dailyUptimeDataList.push(bean.timestamp, data);
}
}

Loading…
Cancel
Save