diff --git a/awx/ui/client/src/app.js b/awx/ui/client/src/app.js index 2d09976b43..dd42857423 100644 --- a/awx/ui/client/src/app.js +++ b/awx/ui/client/src/app.js @@ -730,6 +730,9 @@ var tower = angular.module('Tower', [ $rootScope.$on("$stateChangeStart", function (event, next, nextParams, prev) { + if (next.name !== 'signOut'){ + CheckLicense.notify(); + } $rootScope.$broadcast("closePermissionsModal"); // this line removes the query params attached to a route if(prev && prev.$$route && @@ -822,6 +825,7 @@ var tower = angular.module('Tower', [ $rootScope.sessionTimer = timer; $rootScope.$emit('OpenSocket'); pendoService.issuePendoIdentity(); + CheckLicense.notify(); }); } } diff --git a/awx/ui/client/src/bread-crumb/bread-crumb.partial.html b/awx/ui/client/src/bread-crumb/bread-crumb.partial.html index 6cdae3acb2..679da65803 100644 --- a/awx/ui/client/src/bread-crumb/bread-crumb.partial.html +++ b/awx/ui/client/src/bread-crumb/bread-crumb.partial.html @@ -1,5 +1,5 @@