mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-02 00:33:33 +00:00
Custom certificate upload
This commit is contained in:
@@ -40,7 +40,13 @@ export default function Table({ data, isFetching, onDelete, onRenew, onDownload,
|
||||
header: intl.formatMessage({ id: "column.name" }),
|
||||
cell: (info: any) => {
|
||||
const value = info.getValue();
|
||||
return <DomainsFormatter domains={value.domainNames} createdOn={value.createdOn} />;
|
||||
return (
|
||||
<DomainsFormatter
|
||||
domains={value.domainNames}
|
||||
createdOn={value.createdOn}
|
||||
niceName={value.niceName}
|
||||
/>
|
||||
);
|
||||
},
|
||||
}),
|
||||
columnHelper.accessor((row: any) => row.provider, {
|
||||
@@ -50,6 +56,9 @@ export default function Table({ data, isFetching, onDelete, onRenew, onDownload,
|
||||
if (info.getValue() === "letsencrypt") {
|
||||
return <T id="lets-encrypt" />;
|
||||
}
|
||||
if (info.getValue() === "other") {
|
||||
return <T id="certificates.custom" />;
|
||||
}
|
||||
return <T id={info.getValue()} />;
|
||||
},
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user