mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Snapshots: Fixed issue with snapshoting dashboards with an interval template variable, Fixes #1846
This commit is contained in:
parent
f8cfbedefd
commit
a11b180480
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
**Fixes**
|
**Fixes**
|
||||||
- [Issue #1832](https://github.com/grafana/grafana/issues/1832). Graph Panel + Legend Table mode: Many series casued zero height graph, now legend will never reduce the height of the graph below 50% of row height.
|
- [Issue #1832](https://github.com/grafana/grafana/issues/1832). Graph Panel + Legend Table mode: Many series casued zero height graph, now legend will never reduce the height of the graph below 50% of row height.
|
||||||
|
- [Issue #1846](https://github.com/grafana/grafana/issues/1846). Snapshots: Fixed issue with snapshoting dashboards with an interval template variable
|
||||||
|
|
||||||
# 2.0.1 (2015-04-20)
|
# 2.0.1 (2015-04-20)
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ function (angular, _, kbn) {
|
|||||||
if (!variable.auto) { return; }
|
if (!variable.auto) { return; }
|
||||||
|
|
||||||
// add auto option if missing
|
// add auto option if missing
|
||||||
if (variable.options[0].text !== 'auto') {
|
if (variable.options.length && variable.options[0].text !== 'auto') {
|
||||||
variable.options.unshift({ text: 'auto', value: '$__auto_interval' });
|
variable.options.unshift({ text: 'auto', value: '$__auto_interval' });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user