瀏覽代碼

exporter: query template var keeps refresh value..

on export if the value is not set to never. Otherwise the template
variable will not be populated with any values.""
Daniel Lee 8 年之前
父節點
當前提交
1f92e589e8
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      public/app/features/dashboard/export/exporter.ts

+ 1 - 1
public/app/features/dashboard/export/exporter.ts

@@ -103,7 +103,7 @@ export class DashboardExporter {
         templateizeDatasourceUsage(variable);
         variable.options = [];
         variable.current = {};
-        variable.refresh = 1;
+        variable.refresh = variable.refresh > 0 ? variable.refresh : 1;
       }
     }