Merge pull request #1470 from coreos-inc/fix-creds-dialog

Fix reference in credentials dialog
This commit is contained in:
josephschorr 2016-05-16 16:33:11 -04:00
commit 3a3db11fa8

View file

@ -92,7 +92,7 @@ angular.module('quay').directive('credentialsDialog', function () {
$scope.getDockerConfig = function(credentials) {
var auths = {};
auths[Config['SERVER_HOSTNAME']] = {
'auth': $.base64.encode(credentials.username + ":" + credentials.token),
'auth': $.base64.encode(credentials.username + ":" + credentials.password),
'email': ''
};