fix: typo and empty fields
This commit is contained in:
parent
c413ac293e
commit
0f01b86682
@ -57,7 +57,7 @@ async function generateCSR(config: {
|
|||||||
}, {
|
}, {
|
||||||
name: 'emailAddress',
|
name: 'emailAddress',
|
||||||
value: config.contactEmail,
|
value: config.contactEmail,
|
||||||
}].filter(attr => attr.value));
|
}].filter(attr => attr.value !== null && attr.value?.trim() !== ''));
|
||||||
|
|
||||||
// sign certification request
|
// sign certification request
|
||||||
csr.sign(privateKey);
|
csr.sign(privateKey);
|
||||||
|
|||||||
@ -158,7 +158,7 @@ const [certs, refreshCerts] = computedRefreshableAsync(
|
|||||||
|
|
||||||
<div v-if="commonNameValidation.isValid">
|
<div v-if="commonNameValidation.isValid">
|
||||||
<div>
|
<div>
|
||||||
<h3>Certifacate Signing Request</h3>
|
<h3>Certificate Signing Request</h3>
|
||||||
<TextareaCopyable :value="certs.csrPem" />
|
<TextareaCopyable :value="certs.csrPem" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user