Merge pull request #72 from PhiRequiem/patch-1

Update SslCert.tsx
This commit is contained in:
Alicia Sykes 2024-02-28 20:06:25 +00:00 committed by GitHub
commit 0a1023ce19
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -90,7 +90,6 @@ 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} /> }
{ ext_key_usage && <ListRow title="Extended Key Usage" list={getExtendedKeyUsage(ext_key_usage)} /> }
</Card>