Merge pull request #1899 from influxdata/testing/data-explorer-query-maker-date-sync
Fix Data Explorer Raw Query time range not getting updated through dropdownpull/1921/merge
commit
087a897124
|
@ -6,6 +6,7 @@
|
||||||
1. [#1864](https://github.com/influxdata/chronograf/pull/1864): Fix Write Data form upload button and add `onDragExit` handler
|
1. [#1864](https://github.com/influxdata/chronograf/pull/1864): Fix Write Data form upload button and add `onDragExit` handler
|
||||||
1. [#1891](https://github.com/influxdata/chronograf/pull/1891): Fix Kapacitor config for PagerDuty via the UI
|
1. [#1891](https://github.com/influxdata/chronograf/pull/1891): Fix Kapacitor config for PagerDuty via the UI
|
||||||
1. [#1872](https://github.com/influxdata/chronograf/pull/1872): Prevent stats in the legend from wrapping line
|
1. [#1872](https://github.com/influxdata/chronograf/pull/1872): Prevent stats in the legend from wrapping line
|
||||||
|
1. [#1899](https://github.com/influxdata/chronograf/pull/1899): Fix raw query editor in Data Explorer not using selected time
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
1. [#1863](https://github.com/influxdata/chronograf/pull/1863): Improve 'new-sources' server flag example by adding 'type' key
|
1. [#1863](https://github.com/influxdata/chronograf/pull/1863): Improve 'new-sources' server flag example by adding 'type' key
|
||||||
|
|
|
@ -10,7 +10,7 @@ const rawTextBinder = (links, id, action) => text =>
|
||||||
action(links.queries, id, text)
|
action(links.queries, id, text)
|
||||||
|
|
||||||
const buildText = (q, timeRange) =>
|
const buildText = (q, timeRange) =>
|
||||||
q.rawText || buildInfluxQLQuery(q.range || timeRange, q) || ''
|
q.rawText || buildInfluxQLQuery(timeRange, q) || ''
|
||||||
|
|
||||||
const QueryMaker = ({
|
const QueryMaker = ({
|
||||||
source,
|
source,
|
||||||
|
|
Loading…
Reference in New Issue