From e5f63736177b23a160082acce38d0aaed14b706c Mon Sep 17 00:00:00 2001 From: Michael Abashian Date: Mon, 15 Feb 2016 10:29:54 -0500 Subject: [PATCH] Added ProcessErrors declaration --- awx/ui/client/src/bread-crumb/bread-crumb.directive.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui/client/src/bread-crumb/bread-crumb.directive.js b/awx/ui/client/src/bread-crumb/bread-crumb.directive.js index cbfe6ff4cb..fc5d3ef1db 100644 --- a/awx/ui/client/src/bread-crumb/bread-crumb.directive.js +++ b/awx/ui/client/src/bread-crumb/bread-crumb.directive.js @@ -1,7 +1,7 @@ /* jshint unused: vars */ export default - [ 'templateUrl', '$state', 'FeaturesService', function(templateUrl, $state, FeaturesService) { + [ 'templateUrl', '$state', 'FeaturesService', 'ProcessErrors', function(templateUrl, $state, FeaturesService, ProcessErrors) { return { restrict: 'E', templateUrl: templateUrl('bread-crumb/bread-crumb'), @@ -60,7 +60,7 @@ export default else { scope.showActivityStreamButton = false; - + } });