Merge pull request #2004 from influxdata/fix/QueryTemplates

Display Query Templates dropdown even when status is null
pull/2008/head
Deniz Kusefoglu 2017-09-18 16:52:37 -07:00 committed by GitHub
commit 64d94b250f
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,6 @@
## v1.3.9.0 [unreleased]
### Bug Fixes
1.[#2004](https://github.com/influxdata/chronograf/pull/2004): Fix DE query templates dropdown disappearance.
### Features
1. [#1885](https://github.com/influxdata/chronograf/pull/1885): Add `fill` options to data explorer and dashboard queries
1. [#1978](https://github.com/influxdata/chronograf/pull/1978): Support editing kapacitor TICKScript

View File

@ -4,7 +4,11 @@ import classnames from 'classnames'
const QueryStatus = ({status, children}) => {
if (!status) {
return <div className="query-editor--status" />
return (
<div className="query-editor--status">
{children}
</div>
)
}
if (status.loading) {