Fix handling of multi-part branches in the build triggers

Fixes #1360
This commit is contained in:
Joseph Schorr 2016-07-26 13:41:13 -07:00
parent 9d48bcd0f1
commit 06d52f2c83
7 changed files with 232 additions and 21 deletions

View file

@ -29,7 +29,7 @@ angular.module('quay').directive('sourceRefLink', function () {
return '';
}
return parts[2];
return parts.slice(2).join('/');
};
$scope.getUrl = function(ref, template, kind) {