Snapshots: Fixed issue with snapshoting dashboards with an interval template variable, Fixes #1846

This commit is contained in:
Torkel Ödegaard
2015-04-22 12:27:12 +02:00
parent f8cfbedefd
commit a11b180480
2 changed files with 2 additions and 1 deletions

View File

@@ -52,7 +52,7 @@ function (angular, _, kbn) {
if (!variable.auto) { return; }
// 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' });
}