mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
DrilldownLink: template variables in params property was not interpolated, Fixes #1095
This commit is contained in:
parent
56321da9c1
commit
de10bd4ef6
@ -1,8 +1,9 @@
|
||||
# 1.9.0 (unreleased)
|
||||
|
||||
**Fixes**
|
||||
- [Issue #1087](https://github.com/grafana/grafana/issues/1087). Bug: Fixed IE9 crash due to angular drag drop
|
||||
- [Issue #1093](https://github.com/grafana/grafana/issues/1093). Bug: Fixed position for drilldown link tooltip when dashboard requires scrolling
|
||||
- [Issue #1087](https://github.com/grafana/grafana/issues/1087). Panel: Fixed IE9 crash due to angular drag drop
|
||||
- [Issue #1093](https://github.com/grafana/grafana/issues/1093). SingleStatPanel: Fixed position for drilldown link tooltip when dashboard requires scrolling
|
||||
- [Issue #1095](https://github.com/grafana/grafana/issues/1095). DrilldownLink: template variables in params property was not interpolated
|
||||
|
||||
# 1.9.0-rc1 (2014-11-17)
|
||||
|
||||
|
@ -29,7 +29,7 @@ function (angular, kbn) {
|
||||
info.href += '&to=' + range.to;
|
||||
|
||||
if (link.params) {
|
||||
info.href += "&" + link.params;
|
||||
info.href += "&" + templateSrv.replace(link.params);
|
||||
}
|
||||
|
||||
return info;
|
||||
|
Loading…
Reference in New Issue
Block a user