mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 23:55:47 -06:00
fixed issue with filtersrv refactoring and removing filter parameter
This commit is contained in:
parent
e2dae1f484
commit
df796e32eb
@ -1,6 +1,7 @@
|
|||||||
vNext
|
vNext
|
||||||
- New Y-axis formater for metric values that represent seconds (Issue #427) - thx @jippi
|
- New Y-axis formater for metric values that represent seconds (Issue #427) - thx @jippi
|
||||||
- Allow special characters in serie names (influxdb datasource), PR #390 - thx @majst01
|
- Allow special characters in serie names (influxdb datasource), PR #390 - thx @majst01
|
||||||
|
- Refactoring of filterSrv (Issue #428), thx @Tetha
|
||||||
|
|
||||||
# 1.5.4 (2014-05-13)
|
# 1.5.4 (2014-05-13)
|
||||||
### New features and improvements
|
### New features and improvements
|
||||||
|
@ -93,7 +93,8 @@ define([
|
|||||||
},
|
},
|
||||||
|
|
||||||
removeTemplateParameter: function(templateParameter) {
|
removeTemplateParameter: function(templateParameter) {
|
||||||
this.templateParameters = _.without( this.templateParameters, templateParameter );
|
this.templateParameters = _.without(this.templateParameters, templateParameter);
|
||||||
|
this.dashboard.services.filter.list = this.templateParameters;
|
||||||
},
|
},
|
||||||
|
|
||||||
init: function(dashboard) {
|
init: function(dashboard) {
|
||||||
|
Loading…
Reference in New Issue
Block a user