Merge pull request #1470 from coreos-inc/fix-creds-dialog
Fix reference in credentials dialog
This commit is contained in:
commit
3a3db11fa8
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ angular.module('quay').directive('credentialsDialog', function () {
|
||||||
$scope.getDockerConfig = function(credentials) {
|
$scope.getDockerConfig = function(credentials) {
|
||||||
var auths = {};
|
var auths = {};
|
||||||
auths[Config['SERVER_HOSTNAME']] = {
|
auths[Config['SERVER_HOSTNAME']] = {
|
||||||
'auth': $.base64.encode(credentials.username + ":" + credentials.token),
|
'auth': $.base64.encode(credentials.username + ":" + credentials.password),
|
||||||
'email': ''
|
'email': ''
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Reference in a new issue