mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-05 09:55:14 +00:00
Fix #4828 showing incorrect certicificate value
This commit is contained in:
@@ -5,5 +5,14 @@ interface Props {
|
|||||||
certificate?: Certificate;
|
certificate?: Certificate;
|
||||||
}
|
}
|
||||||
export function CertificateFormatter({ certificate }: Props) {
|
export function CertificateFormatter({ certificate }: Props) {
|
||||||
return <T id={certificate ? "lets-encrypt" : "http-only"} />;
|
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} />;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user