Visualizer #3
|
@ -265,7 +265,7 @@ function addHistory(packet) {
|
|||
}
|
||||
|
||||
// Limit to historyMaxPackets items
|
||||
const shift = chartHistoryHz.data.labels.length == historyMaxPackets;
|
||||
const shift = chartHistoryHz.data.labels.length === historyMaxPackets;
|
||||
if (shift) {
|
||||
chartHistoryHz.data.labels.shift();
|
||||
chartHistoryDb.data.labels.shift();
|
||||
|
@ -276,7 +276,7 @@ function addHistory(packet) {
|
|||
let i = 0;
|
||||
for (const x of keys) {
|
||||
let data = packet[x];
|
||||
if (data == -1e38 /* "NaN" */) {
|
||||
if (data === -1e38 /* "NaN" */) {
|
||||
data = undefined;
|
||||
}
|
||||
if (shift) {
|
||||
|
|
Loading…
Reference in a new issue