Merge pull request #2593 from coreos-inc/trust-disabled-no-call

Don't make signing call unless trust is explicitly enabled
This commit is contained in:
josephschorr 2017-05-01 13:06:05 -04:00 committed by GitHub
commit 4764756f85

View file

@ -45,6 +45,10 @@ angular.module('quay').directive('repoPanelTags', function () {
$scope.hasDefcon1 = false;
var loadRepoSignatures = function() {
if (!$scope.repository || !$scope.repository.trust_enabled) {
return;
}
$scope.repoSignatureError = false;
$scope.repoSignatureInfo = null;