Commit 547055bb4e38cd8d5a33db300da3cc6c9e716d87
Committed by
Andrew Shvayka
1 parent
bba989e8
UI: Fixed not updated data for timeseries widget in NONE aggregation type
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -308,7 +308,7 @@ export class DataAggregator { |
308 | 308 | } |
309 | 309 | aggKeyData.delete(aggTimestamp); |
310 | 310 | this.updatedData = true; |
311 | - } else if (aggTimestamp < this.endTs) { | |
311 | + } else if (aggTimestamp < this.endTs || this.noAggregation) { | |
312 | 312 | const kvPair: [number, any] = [aggTimestamp, aggData.aggValue]; |
313 | 313 | keyData.push(kvPair); |
314 | 314 | } | ... | ... |