diff --git a/js/controller/ListController.js b/js/controller/ListController.js index 419572ce4..7713dcf22 100644 --- a/js/controller/ListController.js +++ b/js/controller/ListController.js @@ -105,6 +105,13 @@ app.controller('ListController', function ($scope, $location, $filter, BoardServ } }, true); } + + $scope.$watch(function () { + return $scope.boardservice.data; + }, function () { + filterData(); + }, true); + /* Watch for board filter change */ $scope.$watchCollection(function(){ return $state.params;