Files
nginx-proxy-manager/frontend/src/components/Table/Formatter/CertificateFormatter.tsx
2025-11-05 10:21:55 +10:00

19 lines
479 B
TypeScript

import type { Certificate } from "src/api/backend";
import { T } from "src/locale";
interface Props {
certificate?: Certificate;
}
export function CertificateFormatter({ certificate }: Props) {
let translation = "http-only";
if (certificate) {
translation = certificate.provider;
if (translation === "letsencrypt") {
translation = "lets-encrypt";
} else if (translation === "other") {
translation = "certificates.custom";
}
}
return <T id={translation} />;
}