Merge pull request #3073 from quay/joseph.schorr/QUAY-935/robot-create-bug
Fix error displayed if a description was not entered for creating a robot
This commit is contained in:
commit
5cccd45cd7
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ angular.module('quay').directive('createRobotDialog', function () {
|
|||
};
|
||||
|
||||
var data = {
|
||||
'description': description
|
||||
'description': description || ''
|
||||
};
|
||||
|
||||
var errorDisplay = ApiService.errorDisplay('Cannot create robot account', function() {
|
||||
|
|
Reference in a new issue