mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
fix(influxdb): fix for using template variables in side alias field in influxdb 0.9 editor, fixes #2446
This commit is contained in:
parent
f62d743407
commit
41e13fab55
@ -3,6 +3,7 @@
|
||||
**Fixes**
|
||||
- [Issue #2443](https://github.com/grafana/grafana/issues/2443). Templating: Fix for buggy repeat row behavior when combined with with repeat panel due to recent change before 2.1 release
|
||||
- [Issue #2442](https://github.com/grafana/grafana/issues/2442). Templating: Fix text panel when using template variables in text in in repeated panel
|
||||
- [Issue #2446](https://github.com/grafana/grafana/issues/2446). InfluxDB: Fix for using template vars inside alias field (InfluxDB 0.9)
|
||||
|
||||
# 2.1.0 (2015-08-04)
|
||||
|
||||
|
@ -61,6 +61,9 @@ function (angular, _, kbn, InfluxSeries, InfluxQueryBuilder) {
|
||||
if (!result || !result.series) { continue; }
|
||||
|
||||
var alias = (options.targets[i] || {}).alias;
|
||||
if (alias) {
|
||||
alias = templateSrv.replace(alias, options.scopedVars);
|
||||
}
|
||||
var targetSeries = new InfluxSeries({ series: data.results[i].series, alias: alias }).getTimeSeries();
|
||||
for (y = 0; y < targetSeries.length; y++) {
|
||||
seriesList.push(targetSeries[y]);
|
||||
|
Loading…
Reference in New Issue
Block a user