diff --git a/awx/ui/client/src/app.js b/awx/ui/client/src/app.js index 70efcfa1c8..c14ced247b 100644 --- a/awx/ui/client/src/app.js +++ b/awx/ui/client/src/app.js @@ -549,8 +549,11 @@ var tower = angular.module('Tower', [ Authorization.restoreUserInfo(); //user must have hit browser refresh } if (next && (next.name !== "signIn" && next.name !== "signOut" && next.name !== "license")) { - // if not headed to /login or /logout, then check the license - CheckLicense.test(event); + if($rootScope.configReady === true){ + // if not headed to /login or /logout, then check the license + CheckLicense.test(event); + } + } } activateTab();