diff --git a/awx/ui/client/src/app.js b/awx/ui/client/src/app.js index 845e5ea5c5..1816888ce8 100644 --- a/awx/ui/client/src/app.js +++ b/awx/ui/client/src/app.js @@ -247,9 +247,12 @@ var tower = angular.module('Tower', [ label: "DASHBOARD" }, resolve: { - graphData: ['$q', 'jobStatusGraphData', function($q, jobStatusGraphData) { - return $q.all({ - jobStatus: jobStatusGraphData.get("month", "all"), + graphData: ['$q', 'jobStatusGraphData', '$rootScope', + function($q, jobStatusGraphData, $rootScope) { + return $rootScope.featuresConfigured.promise.then(function () { + return $q.all({ + jobStatus: jobStatusGraphData.get("month", "all"), + }); }); }] }