master
Matthew 2021-07-03 22:52:09 -04:00
parent 30460e2e0e
commit d82d8b68e4
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ export default class Keys extends Route {
<p><strong>Issuer:</strong> ${x509.data.issuer.organization} (${x509.data.issuer.commonName})</p> <p><strong>Issuer:</strong> ${x509.data.issuer.organization} (${x509.data.issuer.commonName})</p>
<br><br><br> <br><br><br>
${memberDoc.x509.replace('\n', '<br>')} ${memberDoc.x509.replace(/(?:\r\n|\r|\n)/g, '<br>')}
`); `);
}); });
@ -120,7 +120,7 @@ export default class Keys extends Route {
<p><strong>Key ID:</strong> ${pgp.data.keyID}</p> <p><strong>Key ID:</strong> ${pgp.data.keyID}</p>
<p><strong>Fingerprint:</strong> ${pgp.data.fingerprint}</p> <p><strong>Fingerprint:</strong> ${pgp.data.fingerprint}</p>
<br><br><br> <br><br><br>
${memberDoc.pgp.replace('\n', '<br>')} ${memberDoc.pgp.replace(/(?:\r\n|\r|\n)/g, '<br>')}
`); `);
}); });
} }