{cert.common_name}
@@ -157,7 +168,7 @@ export default function ArchiveManagementTable({
))}
{filteredCertificates.length === 0 && (
-
+
No versions found.
diff --git a/src/components/admin/RootCaTable.tsx b/src/components/admin/RootCaTable.tsx
index 8939001..bcacd6a 100644
--- a/src/components/admin/RootCaTable.tsx
+++ b/src/components/admin/RootCaTable.tsx
@@ -23,6 +23,7 @@ interface CaCertificate {
status: string;
issuer_name?: string;
issuer_serial?: string;
+ family_id?: string;
}
interface RootCaTableProps {
@@ -78,6 +79,9 @@ export default function RootCaTable({
{t("type_th")}
+
+ Family
+
{t("common_name_th")}
@@ -105,6 +109,13 @@ export default function RootCaTable({
{formatType(cert.ca_type)}
+
+ {cert.family_id ? (
+
+ {cert.family_id.split('-')[0]}...
+
+ ) : "-"}
+
{cert.common_name}
@@ -144,7 +155,7 @@ export default function RootCaTable({
))}
{filteredCertificates.length === 0 && (
-
+
{searchTerm ? t("no_ca_search", { term: searchTerm }) : t("no_ca_found")}