Merge pull request #4235 from influxdata/fix/de_submit_query
fix: pass correct fields to /queries to fix de submit query buttonpull/4241/head
commit
8ae7b8fb43
|
@ -19,6 +19,7 @@
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
1. [#4231](https://github.com/influxdata/chronograf/pull/4231): Fix notifying user to press ESC to exit presentation mode
|
1. [#4231](https://github.com/influxdata/chronograf/pull/4231): Fix notifying user to press ESC to exit presentation mode
|
||||||
1. [#4234](https://github.com/influxdata/chronograf/pull/4234): Fix persisting whether or not template variable control bar is open
|
1. [#4234](https://github.com/influxdata/chronograf/pull/4234): Fix persisting whether or not template variable control bar is open
|
||||||
|
1. [#4235](https://github.com/influxdata/chronograf/pull/4235): Fix Submit Query button in Data Explorer to correctly return results
|
||||||
|
|
||||||
## v1.6.1 [2018-08-02]
|
## v1.6.1 [2018-08-02]
|
||||||
|
|
||||||
|
|
|
@ -395,9 +395,8 @@ export const editRawTextAsync = (
|
||||||
try {
|
try {
|
||||||
const queries = await getQueryConfigAndStatus(url, [
|
const queries = await getQueryConfigAndStatus(url, [
|
||||||
{
|
{
|
||||||
text,
|
|
||||||
id,
|
id,
|
||||||
queryConfig: {tags: {}, areTagsAccepted: true},
|
query: text,
|
||||||
},
|
},
|
||||||
])
|
])
|
||||||
const config = queries.find(q => q.id === id)
|
const config = queries.find(q => q.id === id)
|
||||||
|
|
Loading…
Reference in New Issue