Merge pull request #3485 from influxdata/fixes/custom-time-indicator
Check for query text in CustomTimeIndicatorpull/10616/head
commit
93ea09f5f1
|
@ -15,7 +15,8 @@ interface Props {
|
||||||
|
|
||||||
const CustomTimeIndicator: SFC<Props> = ({queries}) => {
|
const CustomTimeIndicator: SFC<Props> = ({queries}) => {
|
||||||
const q = queries.find(
|
const q = queries.find(
|
||||||
query => query.text.includes(TEMP_VAR_DASHBOARD_TIME) === false
|
query =>
|
||||||
|
_.get(query, 'text', '').includes(TEMP_VAR_DASHBOARD_TIME) === false
|
||||||
)
|
)
|
||||||
const customLower = _.get(q, ['queryConfig', 'range', 'lower'], null)
|
const customLower = _.get(q, ['queryConfig', 'range', 'lower'], null)
|
||||||
const customUpper = _.get(q, ['queryConfig', 'range', 'upper'], null)
|
const customUpper = _.get(q, ['queryConfig', 'range', 'upper'], null)
|
||||||
|
|
Loading…
Reference in New Issue