Fix >= to >

This commit is contained in:
Joseph Schorr 2013-12-19 15:29:39 -05:00
parent b6f42e8835
commit c26d56a31f

View file

@ -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;
});
};