Slight UI improvements to the teams page: sort members by whether they are a robot, reduce the number displayed to 20, and make users clickable

This commit is contained in:
Joseph Schorr 2015-04-09 15:12:03 -04:00
parent c2e4cbe95b
commit 3a2f271362
3 changed files with 11 additions and 4 deletions

View file

@ -12,7 +12,7 @@ angular.module('quay').directive('focusablePopoverContent', ['$timeout', '$popov
if (!scope) { return; }
scope.$apply(function() {
if (!scope || !$scope.$hide) { return; }
if (!scope || !scope.$hide) { return; }
scope.$hide();
});
};