Skip to content

Commit

Permalink
Merge pull request #5555 from influxdata/5481/log_bool_values
Browse files Browse the repository at this point in the history
fix(ui): show also bool tag/field values in tickscript editor logs
  • Loading branch information
sranka authored Aug 26, 2020
2 parents fdaf9f2 + 33ff2fc commit 621068f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
1. [#5556](https://github.com/influxdata/chronograf/pull/5556): Make MySQL protoboard more useful by using derivatives for counter values.
1. [#5536](https://github.com/influxdata/chronograf/pull/5536): Add HTTP security headers.
1. [#5553](https://github.com/influxdata/chronograf/pull/5553): Show all query results in table view.
1. [#5555](https://github.com/influxdata/chronograf/pull/5555): Show also boolean field/tag values in tickscript editor logs.

### Other

Expand Down
2 changes: 1 addition & 1 deletion ui/src/kapacitor/components/LogItemKapacitorPoint.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class LogItemKapacitorPoint extends PureComponent<Props> {
<div className="logs-table--scrollbox">
{sortedObjKeys.map(objKey => (
<div key={objKey} className="logs-table--key-value">
{objKey}: <span>{object[objKey]}</span>
{objKey}: <span>{String(object[objKey])}</span>
</div>
))}
</div>
Expand Down

0 comments on commit 621068f

Please sign in to comment.