From 126371f8a1df2c44409ae2f78f97dd6ecc3f01cc Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Thu, 17 Jul 2014 14:36:06 -0400 Subject: [PATCH] Fix non-library Dockerhub links --- static/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/app.js b/static/js/app.js index e2f3394ce..35577621e 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -4271,7 +4271,7 @@ quayApp.directive('dockerfileCommand', function () { }, '': function(pieces) { - var rnamespace = pieces.length == 1 ? '_' : pieces[0]; + var rnamespace = pieces.length == 1 ? '_' : 'u/' + pieces[0]; var rname = pieces[pieces.length - 1].split(':')[0]; return 'https://registry.hub.docker.com/' + rnamespace + '/' + rname + '/'; }