mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
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.""
This commit is contained in:
parent
812ac5cb8e
commit
1f92e589e8
@ -103,7 +103,7 @@ export class DashboardExporter {
|
||||
templateizeDatasourceUsage(variable);
|
||||
variable.options = [];
|
||||
variable.current = {};
|
||||
variable.refresh = 1;
|
||||
variable.refresh = variable.refresh > 0 ? variable.refresh : 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user