Fix >= to >
This commit is contained in:
parent
b6f42e8835
commit
c26d56a31f
1 changed files with 1 additions and 1 deletions
|
@ -1504,7 +1504,7 @@ quayApp.directive('headerBar', function () {
|
||||||
|
|
||||||
var checkPrivate = Restangular.one('user/private');
|
var checkPrivate = Restangular.one('user/private');
|
||||||
checkPrivate.customGET().then(function(resp) {
|
checkPrivate.customGET().then(function(resp) {
|
||||||
$scope.overPlan = resp.privateCount >= resp.reposAllowed;
|
$scope.overPlan = resp.privateCount > resp.reposAllowed;
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Reference in a new issue