mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 10:02:33 +08:00
@ -447,7 +447,7 @@ func (e *DataSourceHandler) newProcessCfg(query backend.DataQuery, queryContext
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if qm.Format == dataQueryFormatTable && col == "timeend" {
|
if qm.Format == dataQueryFormatTable && strings.EqualFold(col, "timeend") {
|
||||||
qm.timeEndIndex = i
|
qm.timeEndIndex = i
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
@ -443,7 +443,7 @@ func (e *DataSourceHandler) newProcessCfg(query backend.DataQuery, queryContext
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if qm.Format == dataQueryFormatTable && col == "timeend" {
|
if qm.Format == dataQueryFormatTable && strings.EqualFold(col, "timeend") {
|
||||||
qm.timeEndIndex = i
|
qm.timeEndIndex = i
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
@ -443,7 +443,7 @@ func (e *DataSourceHandler) newProcessCfg(query backend.DataQuery, queryContext
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if qm.Format == dataQueryFormatTable && col == "timeend" {
|
if qm.Format == dataQueryFormatTable && strings.EqualFold(col, "timeend") {
|
||||||
qm.timeEndIndex = i
|
qm.timeEndIndex = i
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user