Fix reference in credentials dialog

This commit is contained in:
Joseph Schorr 2016-05-16 16:30:56 -04:00
parent 0c7274b6ba
commit a3612c0e37

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': ''
};