diff --git a/awx/ui/client/src/license/license.controller.js b/awx/ui/client/src/license/license.controller.js index b385020d6d..77a79ccc17 100644 --- a/awx/ui/client/src/license/license.controller.js +++ b/awx/ui/client/src/license/license.controller.js @@ -82,8 +82,10 @@ export default var calcExpiresOn = function(days){ // calculate the expiration date of the license + days = parseInt(days); return moment().add(days, 'days').calendar(); }; + var init = function(){ $scope.fileName = "No file selected."; $scope.title = $rootScope.licenseMissing ? "Tower License" : "License Management";