Really sort robots by name. Also sort teams by name and fix team create.
This commit is contained in:
parent
67c70860c5
commit
518419097f
3 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
});
|
||||
};
|
||||
|
||||
|
|
Reference in a new issue