Update SslCert.tsx

esta línea está repetida
This commit is contained in:
PhiRequiem 2024-01-18 17:51:22 -06:00 committed by GitHub
parent 299925d22e
commit 0db0b044b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -90,7 +90,8 @@ const SslCertCard = (props: { data: any, title: string, actionButtons: any }): J
{ valid_from && <DataRow lbl="Renewed" val={formatDate(valid_from)} /> }
{ serialNumber && <DataRow lbl="Serial Num" val={serialNumber} /> }
{ fingerprint && <DataRow lbl="Fingerprint" val={fingerprint} /> }
{ fingerprint && <DataRow lbl="Fingerprint" val={fingerprint} /> }
{/* // this line is repeated
{ fingerprint && <DataRow lbl="Fingerprint" val={fingerprint} /> } */}
{ ext_key_usage && <ListRow title="Extended Key Usage" list={getExtendedKeyUsage(ext_key_usage)} /> }
</Card>