Really sort robots by name. Also sort teams by name and fix team create.

This commit is contained in:
Joseph Schorr 2015-04-23 13:20:03 -04:00
parent 67c70860c5
commit 518419097f
3 changed files with 4 additions and 4 deletions

View file

@ -94,7 +94,7 @@ angular.module('quay').directive('entitySearch', function () {
$scope.createTeam = function() {
CreateService.askCreateTeam($scope.namespace, function(created) {
$scope.setEntity(created.name, 'team', false, created.avatar);
$scope.teams[teamname] = created;
$scope.teams[created.name] = created;
});
};