mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Filtering: Fix for nested filters, changing a child filter could result in infinite recursion in some cases, Fixes #628
This commit is contained in:
parent
67582aaee4
commit
867186fd66
@ -24,6 +24,7 @@
|
||||
**Fixes**
|
||||
- [Issue #545](https://github.com/grafana/grafana/issues/545). Chart: Fix formatting negative values (axis formats, legend values)
|
||||
- [Issue #460](https://github.com/grafana/grafana/issues/460). Chart: fix for max legend value when max value is zero
|
||||
- [Issue #628](https://github.com/grafana/grafana/issues/628). Filtering: Fix for nested filters, changing a child filter could result in infinite recursion in some cases
|
||||
|
||||
# 1.6.1 (2014-06-24)
|
||||
|
||||
|
@ -53,7 +53,7 @@ function (angular, app, _) {
|
||||
if (templateParam === updatedTemplatedParam) {
|
||||
return;
|
||||
}
|
||||
if (templateParam.query.indexOf(updatedTemplatedParam.name) !== -1) {
|
||||
if (templateParam.query.indexOf('[[' + updatedTemplatedParam.name + ']]') !== -1) {
|
||||
return $scope.applyFilter(templateParam);
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user