fixes
parent
30460e2e0e
commit
d82d8b68e4
|
@ -68,7 +68,7 @@ export default class Keys extends Route {
|
|||
|
||||
<p><strong>Issuer:</strong> ${x509.data.issuer.organization} (${x509.data.issuer.commonName})</p>
|
||||
<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>Fingerprint:</strong> ${pgp.data.fingerprint}</p>
|
||||
<br><br><br>
|
||||
${memberDoc.pgp.replace('\n', '<br>')}
|
||||
${memberDoc.pgp.replace(/(?:\r\n|\r|\n)/g, '<br>')}
|
||||
`);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue