Skip to content

Commit

Permalink
no acronyms
Browse files Browse the repository at this point in the history
  • Loading branch information
kayra1 committed Jun 3, 2024
1 parent 4927566 commit d275950
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/src/app/certificate_requests/row.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ export default function Row({ id, csr, certificate }: rowProps) {
return (
<tr>
<td className="" data-test-column="id">{id}</td>
<td className="u-overflow--visible" data-test-column="details">
<p>CN: example.com</p>
<p>SAN: example.com, 127.0.0.1, 1.2.3.4.5.56</p>
<td className="" data-test-column="details">
<p><b>Common Name</b>: example.com</p>
<p><b>Subject Alternative Name</b>: example.com, 127.0.0.1, 1.2.3.4.5.56</p>
</td>
<td className="" data-test-column="status">{certificate == "" ? "outstanding" : (certificate == "rejected" ? "rejected" : "certificate expiry date here")}</td>
<td className="" data-test-column="action">
Expand Down

0 comments on commit d275950

Please sign in to comment.