Make robot accounts filter rather than display the dialog when "showRobot" is passed to the manager
This commit is contained in:
parent
ecf1135dcd
commit
72abd80f08
5 changed files with 47 additions and 4 deletions
|
@ -118,7 +118,7 @@ angular.module('quay').directive('robotsManager', function () {
|
|||
if ($routeParams.showRobot) {
|
||||
var index = $scope.findRobotIndexByName($routeParams.showRobot);
|
||||
if (index >= 0) {
|
||||
$scope.showRobot($scope.robots[index]);
|
||||
$scope.robotFilter = $routeParams.showRobot;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Reference in a new issue