From 1f417f0606c470dbc4ad0fe7c960c5157fdddc5c Mon Sep 17 00:00:00 2001 From: Julien Pivotto Date: Mon, 14 Apr 2014 14:47:39 +0200 Subject: [PATCH] Reload filters when loading page This commit refreshes the dynamic filters when loading page. --- src/app/panels/filtering/module.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/panels/filtering/module.js b/src/app/panels/filtering/module.js index b613cc64e5c..126a76faee3 100644 --- a/src/app/panels/filtering/module.js +++ b/src/app/panels/filtering/module.js @@ -28,6 +28,9 @@ function (angular, app, _) { $scope.init = function() { $scope.filterSrv = filterSrv; + _.each(filterSrv.list, function(filter) { + $scope.applyFilter(filter); + }); }; $scope.remove = function(filter) {