fixed issue with filtersrv refactoring and removing filter parameter

This commit is contained in:
Torkel Ödegaard 2014-05-27 18:27:53 +02:00
parent e2dae1f484
commit df796e32eb
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,7 @@
vNext
- 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
- Refactoring of filterSrv (Issue #428), thx @Tetha
# 1.5.4 (2014-05-13)
### New features and improvements

View File

@ -93,7 +93,8 @@ define([
},
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) {