chore: update changelog

pull/5553/head
Pavel Zavora 2020-08-04 08:04:26 +02:00
parent 8a44bd5b23
commit bda4e6935a
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
1. [#5554](https://github.com/influxdata/chronograf/pull/5554): Escape tag values in query builder.
1. [#5551](https://github.com/influxdata/chronograf/pull/5551): Sort namespaces by database and retention policy.
1. [#5553](https://github.com/influxdata/chronograf/pull/5553): Show all query results in table view.
### Features

View File

@ -404,7 +404,7 @@ const constructTimeSeries = (
timeSeries[existingRowIndex].values[valueIndex] = value
}
// change all undefined values to null
// change all undefined values to null, these values were not set
timeSeries.forEach(x => {
for (let i = 0; i < x.values.length; i++) {
if (x.values[i] === undefined) {