mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 13:57:10 -04:00
fix: typo and empty fields
This commit is contained in:
parent
c413ac293e
commit
0f01b86682
2 changed files with 2 additions and 2 deletions
|
@ -57,7 +57,7 @@ async function generateCSR(config: {
|
|||
}, {
|
||||
name: 'emailAddress',
|
||||
value: config.contactEmail,
|
||||
}].filter(attr => attr.value));
|
||||
}].filter(attr => attr.value !== null && attr.value?.trim() !== ''));
|
||||
|
||||
// sign certification request
|
||||
csr.sign(privateKey);
|
||||
|
|
|
@ -158,7 +158,7 @@ const [certs, refreshCerts] = computedRefreshableAsync(
|
|||
|
||||
<div v-if="commonNameValidation.isValid">
|
||||
<div>
|
||||
<h3>Certifacate Signing Request</h3>
|
||||
<h3>Certificate Signing Request</h3>
|
||||
<TextareaCopyable :value="certs.csrPem" />
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue