Merge pull request #1385 from opf/fix/8386-reset-query-title-on-clear

Fix/8386 reset query title on clear
pull/1383/merge
Alex Coles 11 years ago
commit e0c3b56fbf
  1. 2
      app/assets/javascripts/angular/directives/work_packages/filter-clear-directive.js

@ -35,7 +35,7 @@ angular.module('openproject.workPackages.directives')
scope: true, scope: true,
link: function(scope, element, attributes) { link: function(scope, element, attributes) {
scope.clearQuery = function(){ scope.clearQuery = function(){
scope.query.clearAll(); scope.$emit('queryResetRequired');
}; };
} }
}; };

Loading…
Cancel
Save