From 104493e7254f7f79f37b2342b11ec416b0b88c40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Thu, 13 Nov 2014 15:22:12 +0100 Subject: [PATCH] SharePanel: fix for interval variables and auto value, Fixes #1056 --- src/app/services/templateValuesSrv.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/services/templateValuesSrv.js b/src/app/services/templateValuesSrv.js index 9b80c336f4b..51b11dfb3fa 100644 --- a/src/app/services/templateValuesSrv.js +++ b/src/app/services/templateValuesSrv.js @@ -30,6 +30,7 @@ function (angular, _, kbn) { var option = _.findWhere(variable.options, { text: urlValue }); option = option || { text: urlValue, value: urlValue }; this.setVariableValue(variable, option, true); + this.updateAutoInterval(variable); } else if (variable.refresh) { this.updateOptions(variable);