Merge "Fix show certificate button returning invalid CA"

This commit is contained in:
Zuul 2018-08-24 01:01:57 +00:00 committed by Gerrit Code Review
commit 51d641525b
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@
function perform(selected) {
// get certificate
return magnum.showCertificate(selected.id).then(function(response) {
textDownload.downloadTextFile(response.pem, selected.name + "_ca.pem");
textDownload.downloadTextFile(response.data.pem, selected.name + "_ca.pem");
});
}