diff --git a/static/js/app.js b/static/js/app.js index 072110bea..3deecfd7f 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -1504,7 +1504,7 @@ quayApp.directive('headerBar', function () { var checkPrivate = Restangular.one('user/private'); checkPrivate.customGET().then(function(resp) { - $scope.overPlan = resp.privateCount >= resp.reposAllowed; + $scope.overPlan = resp.privateCount > resp.reposAllowed; }); };