Merge pull request #1899 from influxdata/testing/data-explorer-query-maker-date-sync

Fix Data Explorer Raw Query time range not getting updated through dropdown
pull/1921/merge
Hunter Trujillo 2017-08-17 16:19:30 -06:00 committed by GitHub
commit 087a897124
2 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@
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. [#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
1. [#1863](https://github.com/influxdata/chronograf/pull/1863): Improve 'new-sources' server flag example by adding 'type' key

View File

@ -10,7 +10,7 @@ const rawTextBinder = (links, id, action) => text =>
action(links.queries, id, text)
const buildText = (q, timeRange) =>
q.rawText || buildInfluxQLQuery(q.range || timeRange, q) || ''
q.rawText || buildInfluxQLQuery(timeRange, q) || ''
const QueryMaker = ({
source,