Commit 9d5928dd by Torkel Ödegaard

feat(templating): don't persist template variable options when variable has…

feat(templating): don't persist template variable options when variable has refresh enabled, closes #6586
parent eafe0d6b
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
### Enhancements ### Enhancements
* **Singlestat**: Support repeated template variables in prefix/postfix [#6595](https://github.com/grafana/grafana/issues/6595) * **Singlestat**: Support repeated template variables in prefix/postfix [#6595](https://github.com/grafana/grafana/issues/6595)
* **Templating**: Don't persist variable options with refresh option [#6586](https://github.com/grafana/grafana/issues/6586)
# 4.0-beta1 (2016-11-09) # 4.0-beta1 (2016-11-09)
......
...@@ -32,6 +32,12 @@ export class DatasourceVariable implements Variable { ...@@ -32,6 +32,12 @@ export class DatasourceVariable implements Variable {
getSaveModel() { getSaveModel() {
assignModelProperties(this.model, this, this.defaults); assignModelProperties(this.model, this, this.defaults);
// dont persist options
if (this.refresh !== 0) {
this.model.options = [];
}
return this.model; return this.model;
} }
......
...@@ -50,6 +50,12 @@ export class QueryVariable implements Variable { ...@@ -50,6 +50,12 @@ export class QueryVariable implements Variable {
getSaveModel() { getSaveModel() {
// copy back model properties to model // copy back model properties to model
assignModelProperties(this.model, this, this.defaults); assignModelProperties(this.model, this, this.defaults);
// remove options
if (this.refresh !== 0) {
this.model.options = [];
}
return this.model; return this.model;
} }
......
...@@ -33,7 +33,15 @@ describe('QueryVariable', function() { ...@@ -33,7 +33,15 @@ describe('QueryVariable', function() {
expect(model.sort).to.be(50); expect(model.sort).to.be(50);
}); });
}); it('if refresh != 0 then remove options in presisted mode', () => {
var variable = new QueryVariable({}, null, null, null, null);
variable.options = [{text: 'test'}];
variable.refresh = 1;
var model = variable.getSaveModel();
expect(model.options.length).to.be(0);
});
});
}); });
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment